Searched refs:w_cubic_next (Results 1 – 1 of 1) sorted by relevance
137 uint32_t w_cubic_next = cwnd > 0 ? (uint32_t)cwnd : 0; in cubic_target() local140 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()