Lines Matching refs:snd_cubic_wmax
871 K = tcp_cubic_cbrt(tp->snd_cubic_wmax / CUBIC_BETAB *
877 return CUBIC_CA * tK3 / CUBIC_CB + tp->snd_cubic_wmax;
890 if (tp->snd_cubic_wmax < tp->snd_cubic_wmax_last) {
891 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax;
892 tp->snd_cubic_wmax = tp->snd_cubic_wmax / 2 +
893 tp->snd_cubic_wmax * CUBIC_BETAA / CUBIC_BETAB / 2;
895 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax;
896 tp->snd_cubic_wmax = tp->snd_cwnd;
899 tp->snd_cubic_wmax = uimax(tp->t_segsz, tp->snd_cubic_wmax);
941 w_tcp = tp->snd_cubic_wmax * CUBIC_BETAA / CUBIC_BETAB +