Lines Matching defs:mss
395 uint32_t mss = tcp_fixed_maxseg(ccv->tp);
416 CCV(ccv, snd_cwnd) = max(pipe, mss) + mss;
455 newreno_cc_cwnd_on_multiplicative_decrease(struct cc_var *ccv, uint32_t mss)
467 return max(((uint64_t)cwin * (uint64_t)factor) / (100ULL * (uint64_t)mss), 2) * mss;
476 uint32_t cwin, mss, pipe;
478 mss = tcp_fixed_maxseg(ccv->tp);
484 cwin = newreno_cc_cwnd_on_multiplicative_decrease(ccv, mss);
511 min(CCV(ccv, snd_wnd), pipe) / 2 / mss) * mss;
513 CCV(ccv, snd_cwnd) = mss;
564 u_int mss = tcp_fixed_maxseg(ccv->tp);
565 u_int incr = mss;
603 ccv->nsegs * abc_val * mss);
605 incr = min(ccv->bytes_this_ack, mss);