Home
last modified time | relevance | path

Searched refs:cur_delay (Results 1 – 2 of 2) sorted by relevance

/freebsd/tools/tools/netmap/
H A Dnmreplay.c603 uint64_t cur_delay; /* delay (ns) for current packet from c_delay.run() */ member
820 t_tx = q->qt_qout + q->cur_delay; in pcap_prod()
1412 uint64_t cur_delay; delay in nanoseconds for the current packet
1511 q->cur_delay = arg->d[0]; /* the delay */ in const_delay_run()
1540 q->cur_delay = arg->d[0] + ((arg->d[2] * x) >> 24); in uniform_delay_run()
1590 q->cur_delay = t[my_random24() & (PTS_D_EXP - 1)]; in exp_delay_run()
1591 RD(5, "delay %llu", (unsigned long long)q->cur_delay); in exp_delay_run()
/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c5561 uint32_t cur_delay, seg_sz, maxseg, new_tso, delta, hdwr_delay; in bbr_adjust_for_hw_pacing() local
5586 cur_delay = bbr_get_pacing_delay(bbr, BBR_UNIT, in bbr_adjust_for_hw_pacing()
5590 if (cur_delay > hdwr_delay) in bbr_adjust_for_hw_pacing()
5591 delta = cur_delay - hdwr_delay; in bbr_adjust_for_hw_pacing()
5594 bbr_log_type_tsosize(bbr, cts, delta, cur_delay, hdwr_delay, in bbr_adjust_for_hw_pacing()
5613 seg_sz = max(((cur_delay + rlp->time_between)/rlp->time_between), in bbr_adjust_for_hw_pacing()