Home
last modified time | relevance | path

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

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_newreno.c143 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd()
178 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
H A Dtcp_cubic.c244 tp->t_ccstate->cub_tcp_bytes_acked = BYTES_ACKED(th, tp); in tcp_cubic_tcpwin()
249 tp->t_ccstate->cub_tcp_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_tcpwin()
293 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd()
374 acked = BYTES_ACKED(th, tp); in tcp_cubic_ack_rcvd()
H A Dtcp_ledbat.c199 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd()
396 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
H A Dtcp_prague.c165 tp->t_ccstate->reno_acked = BYTES_ACKED(th, tp); in reno_friendly_win()
167 tp->t_ccstate->reno_acked += BYTES_ACKED(th, tp); in reno_friendly_win()
H A Dtcp_input.c1364 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state()
2974 if (tp->t_state == TCPS_ESTABLISHED && BYTES_ACKED(th, tp) > 0) { in tcp_input()
2976 CC_ALGO(tp)->set_bytes_acked(tp, BYTES_ACKED(th, tp)); in tcp_input()
2985 uint32_t bytes_acked = tcp_round_to(BYTES_ACKED(th, tp), tp->t_maxseg); in tcp_input()
3248 acked = BYTES_ACKED(th, tp); in tcp_input()
5353 acked = BYTES_ACKED(th, tp); in tcp_input()
7175 tp->snd_cwnd = tp->t_maxseg + BYTES_ACKED(th, tp); in tcp_newreno_partial_ack()
7185 if (tp->snd_cwnd > BYTES_ACKED(th, tp)) { in tcp_newreno_partial_ack()
7186 tp->snd_cwnd -= BYTES_ACKED(th, tp); in tcp_newreno_partial_ack()
H A Dtcp_sack.c717 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
H A Dtcp_var.h977 #define BYTES_ACKED(_th_, _tp_) \ macro