Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/netinet/
H A Dtcp_prague.c143 uint32_t w_cubic_next = cwnd > 0 ? (uint32_t)cwnd : 0; in cubic_target() local
146 if (w_cubic_next < tp->snd_cwnd) { in cubic_target()
148 w_cubic_next = tp->snd_cwnd; in cubic_target()
149 } else if (w_cubic_next > (uint32_t)(1.5 * tp->snd_cwnd)) { in cubic_target()
150 w_cubic_next = (uint32_t)(1.5 * tp->snd_cwnd); in cubic_target()
153 return w_cubic_next; in cubic_target()