Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/
H A Dtcp_prague.c137 uint32_t w_cubic_next = cwnd > 0 ? (uint32_t)cwnd : 0; in cubic_target() local
140 if (w_cubic_next < tp->snd_cwnd) { in cubic_target()
142 w_cubic_next = tp->snd_cwnd; in cubic_target()
143 } else if (w_cubic_next > (uint32_t)(1.5 * tp->snd_cwnd)) { in cubic_target()
144 w_cubic_next = (uint32_t)(1.5 * tp->snd_cwnd); in cubic_target()
147 return w_cubic_next; in cubic_target()