Searched refs:BYTES_ACKED (Results 1 – 6 of 6) sorted by relevance
| /xnu-8020.101.4/bsd/netinet/ |
| H A D | tcp_newreno.c | 150 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd() 185 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
|
| H A D | tcp_cubic.c | 272 tp->t_ccstate->cub_tcp_bytes_acked = BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 277 tp->t_ccstate->cub_tcp_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 321 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd() 403 acked = BYTES_ACKED(th, tp); in tcp_cubic_ack_rcvd()
|
| H A D | tcp_ledbat.c | 265 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd() 465 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
|
| H A D | tcp_sack.c | 691 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
|
| H A D | tcp_input.c | 1405 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state() 2979 acked = BYTES_ACKED(th, tp); in tcp_input() 4764 acked = BYTES_ACKED(th, tp); in tcp_input() 6458 tp->snd_cwnd = tp->t_maxseg + BYTES_ACKED(th, tp); in tcp_newreno_partial_ack() 6468 if (tp->snd_cwnd > BYTES_ACKED(th, tp)) { in tcp_newreno_partial_ack() 6469 tp->snd_cwnd -= BYTES_ACKED(th, tp); in tcp_newreno_partial_ack()
|
| H A D | tcp_var.h | 757 #define BYTES_ACKED(_th_, _tp_) \ macro
|