Lines Matching refs:snd_cwnd
201 cnt = tp->snd_cwnd << -ca->cwnd_growth_factor;
204 cnt = max(4U, tp->snd_cwnd >> ca->cwnd_growth_factor);
213 return max((tp->snd_cwnd * nv_loss_dec_factor) >> 10, 2U);
261 if (ca->nv_catchup && tp->snd_cwnd >= nv_min_cwnd) {
375 if (tp->snd_cwnd > max_win) {
402 if (tp->snd_cwnd - max_win > 2) {
406 dec = max(2U, ((tp->snd_cwnd - max_win) *
408 tp->snd_cwnd -= dec;
410 tp->snd_cwnd = max_win;
415 } else if (tp->snd_cwnd <= max_win - nv_pad_buffer) {
448 if (tp->snd_cwnd < nv_min_cwnd)
449 tp->snd_cwnd = nv_min_cwnd;