Searched refs:time_since_sent (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 489 uint32_t time_since_sent, uint32_t srtt, 561 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse; in bbr_timer_start() local 584 time_since_sent = 0; in bbr_timer_start() 593 time_since_sent = cts - tstmp_touse; in bbr_timer_start() 603 if (tov > time_since_sent) in bbr_timer_start() 604 tov -= time_since_sent; in bbr_timer_start() 663 time_since_sent = 0; in bbr_timer_start() 670 time_since_sent = cts - tstmp_touse; in bbr_timer_start() 674 if (thresh > time_since_sent) in bbr_timer_start() 675 to = thresh - time_since_sent; in bbr_timer_start() [all …]
|
H A D | rack.c | 6149 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse; in rack_timer_start() local 6172 time_since_sent = 0; in rack_timer_start() 6191 time_since_sent = cts - tstmp_touse; in rack_timer_start() 6197 if (to > time_since_sent) in rack_timer_start() 6198 to -= time_since_sent; in rack_timer_start() 6301 time_since_sent = 0; in rack_timer_start() 6307 time_since_sent = cts - tstmp_touse; in rack_timer_start() 6334 if (thresh > time_since_sent) { in rack_timer_start() 6335 to = thresh - time_since_sent; in rack_timer_start() 6340 time_since_sent, /* flex2 */ in rack_timer_start()
|