Home
last modified time | relevance | path

Searched refs:cub_last_max (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_cubic.c164 tp->t_ccstate->cub_last_max = tp->snd_ssthresh; in tcp_cubic_cwnd_init_or_reset()
180 if (tp->t_ccstate->cub_last_max == 0) { in tcp_cubic_update()
181 tp->t_ccstate->cub_last_max = tp->snd_ssthresh; in tcp_cubic_update()
194 if (win < tp->t_ccstate->cub_last_max) { in tcp_cubic_update()
201 K = ((float)tp->t_ccstate->cub_last_max - win) / tp->t_maxseg / tcp_cubic_coeff; in tcp_cubic_update()
203 K = (tp->t_ccstate->cub_last_max - win) / tp->t_maxseg / tcp_cubic_coeff; in tcp_cubic_update()
208 tp->t_ccstate->cub_origin_point = tp->t_ccstate->cub_last_max; in tcp_cubic_update()
288 if (tp->snd_cwnd >= tp->t_ccstate->cub_last_max || !tcp_cubic_rfc_compliant) { in tcp_cubic_tcpwin()
450 if (win < tp->t_ccstate->cub_last_max && tcp_cubic_minor_fixes) { in tcp_cubic_pre_fr()
451 tp->t_ccstate->cub_last_max = (uint32_t)((float)win * tcp_cubic_fast_convergence_factor); in tcp_cubic_pre_fr()
[all …]
H A Dtcp_cc.c231 tp->t_ccstate->cub_last_max; in tcp_ccdbg_trace()
H A Dtcp_var.h239 #define cub_last_max __u__._cubic_state_.tc_last_max macro