Lines Matching full:incr
513 u_int incr = tcp_fixed_maxseg(ccv->tp); in newreno_cc_cwnd_in_cong_avoid() local
539 incr = 0; in newreno_cc_cwnd_in_cong_avoid()
541 incr = max((incr * incr / cw), 1); in newreno_cc_cwnd_in_cong_avoid()
542 /* ABC is on by default, so incr equals 0 frequently. */ in newreno_cc_cwnd_in_cong_avoid()
543 if (incr > 0) in newreno_cc_cwnd_in_cong_avoid()
544 return min(cw + incr, TCP_MAXWIN << CCV(ccv, snd_scale)); in newreno_cc_cwnd_in_cong_avoid()
554 u_int incr = mss; in newreno_cc_cwnd_in_slow_start() local
591 incr = min(ccv->bytes_this_ack, in newreno_cc_cwnd_in_slow_start()
594 incr = min(ccv->bytes_this_ack, mss); in newreno_cc_cwnd_in_slow_start()
596 /* ABC is on by default, so incr equals 0 frequently. */ in newreno_cc_cwnd_in_slow_start()
597 if (incr > 0) in newreno_cc_cwnd_in_slow_start()
598 return min(cw + incr, TCP_MAXWIN << CCV(ccv, snd_scale)); in newreno_cc_cwnd_in_slow_start()