Home
last modified time | relevance | path

Searched refs:abc_lim (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.1.10/bsd/netinet/
H A Dtcp_newreno.c196 uint32_t abc_lim; in tcp_newreno_ack_rcvd() local
197 abc_lim = (tp->snd_nxt == tp->snd_max) ? incr * 2 : incr; in tcp_newreno_ack_rcvd()
199 incr = ulmin(acked, abc_lim); in tcp_newreno_ack_rcvd()
H A Dtcp_cubic.c372 uint32_t acked, abc_lim, incr; in tcp_cubic_ack_rcvd() local
380 abc_lim = tcp_initial_cwnd(tp); in tcp_cubic_ack_rcvd()
382 abc_lim = (tp->snd_nxt == tp->snd_max) ? 2 * tp->t_maxseg : tp->t_maxseg; in tcp_cubic_ack_rcvd()
384 incr = min(acked, abc_lim); in tcp_cubic_ack_rcvd()
H A Dtcp_ledbat.c419 u_int abc_lim; in tcp_ledbat_ack_rcvd() local
421 abc_lim = (tp->snd_nxt == tp->snd_max) ? incr * 2 : incr; in tcp_ledbat_ack_rcvd()
423 incr = ulmin(acked, abc_lim); in tcp_ledbat_ack_rcvd()
H A Dtcp_prague.c271 uint32_t abc_lim = tcp_initial_cwnd(tp); in tcp_prague_ack_rcvd() local
272 uint32_t incr = min(acked, abc_lim); in tcp_prague_ack_rcvd()