Searched refs:BYTES_ACKED (Results 1 – 7 of 7) sorted by relevance
| /xnu-12377.41.6/bsd/netinet/ |
| H A D | tcp_cubic.c | 236 tp->t_ccstate->cub_tcp_bytes_acked = BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 238 tp->t_ccstate->cub_tcp_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 275 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd() 340 acked = BYTES_ACKED(th, tp); in tcp_cubic_ack_rcvd()
|
| H A D | tcp_newreno.c | 145 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd() 182 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
|
| H A D | tcp_ledbat.c | 201 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd() 400 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
|
| H A D | tcp_prague.c | 159 tp->t_ccstate->reno_acked = BYTES_ACKED(th, tp); in reno_friendly_win() 161 tp->t_ccstate->reno_acked += BYTES_ACKED(th, tp); in reno_friendly_win()
|
| H A D | tcp_input.c | 1277 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state() 3508 if (tp->t_state == TCPS_ESTABLISHED && BYTES_ACKED(th, tp) > 0) { in tcp_input() 3510 CC_ALGO(tp)->set_bytes_acked(tp, BYTES_ACKED(th, tp)); in tcp_input() 3519 uint32_t bytes_acked = tcp_round_to(BYTES_ACKED(th, tp), tp->t_maxseg); in tcp_input() 3778 acked = BYTES_ACKED(th, tp); in tcp_input() 5533 acked = BYTES_ACKED(th, tp); in tcp_input() 7372 tp->snd_cwnd = tp->t_maxseg + BYTES_ACKED(th, tp); in tcp_newreno_partial_ack() 7382 if (tp->snd_cwnd > BYTES_ACKED(th, tp)) { in tcp_newreno_partial_ack() 7383 tp->snd_cwnd -= BYTES_ACKED(th, tp); in tcp_newreno_partial_ack()
|
| H A D | tcp_sack.c | 707 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
|
| H A D | tcp_var.h | 1019 #define BYTES_ACKED(_th_, _tp_) \ macro
|