Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_newreno.c150 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd()
185 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
H A Dtcp_cubic.c272 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 Dtcp_ledbat.c265 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd()
465 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
H A Dtcp_sack.c691 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
H A Dtcp_input.c1405 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 Dtcp_var.h757 #define BYTES_ACKED(_th_, _tp_) \ macro