Home
last modified time | relevance | path

Searched refs:BYTES_ACKED (Results 1 – 7 of 7) sorted by relevance

/xnu-12377.41.6/bsd/netinet/
H A Dtcp_cubic.c236 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 Dtcp_newreno.c145 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd()
182 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
H A Dtcp_ledbat.c201 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd()
400 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
H A Dtcp_prague.c159 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 Dtcp_input.c1277 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 Dtcp_sack.c707 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
H A Dtcp_var.h1019 #define BYTES_ACKED(_th_, _tp_) \ macro