Searched refs:smss (Results 1 – 1 of 1) sorted by relevance
103 theoretical_cubic_cwnd(int ticks_since_cong, uint32_t wmax, uint32_t smss) in theoretical_cubic_cwnd() argument108 wmax_pkts = wmax / (double)smss; in theoretical_cubic_cwnd()110 return (smss * (wmax_pkts + in theoretical_cubic_cwnd()117 uint32_t smss) in theoretical_reno_cwnd() argument120 return ((wmax * 0.5) + ((ticks_since_cong / (float)rtt_ticks) * smss)); in theoretical_reno_cwnd()125 uint32_t smss) in theoretical_tf_cwnd() argument129 (ticks_since_cong / (float)rtt_ticks) * smss)); in theoretical_tf_cwnd()176 cubic_cwnd(hrtime_t nsecs_since_cong, uint32_t wmax, uint32_t smss, int64_t K) in cubic_cwnd() argument212 cwnd = ((cwnd * CUBIC_C_FACTOR * smss) >> CUBIC_SHIFT_4) + wmax; in cubic_cwnd()229 uint32_t smss) in tf_cwnd() argument[all …]