Home
last modified time | relevance | path

Searched refs:tcp_round_to (Results 1 – 5 of 5) sorted by relevance

/xnu-8792.61.2/bsd/netinet/
H A Dtcp_rledbat.c167 tp->t_rlstate.win = min(tcp_round_to(tp->t_rlstate.win, tp->t_maxseg), in rledbat_congestion_avd()
198 tp->t_rlstate.win = tcp_round_to(tp->t_rlstate.win, tp->t_maxseg); in rledbat_congestion_avd()
277 win = tcp_round_to(win, tp->t_maxseg); in tcp_rledbat_data_rcvd()
329 tp->t_rlstate.win = min(tcp_round_to(tp->t_rlstate.win, tp->t_maxseg), in tcp_rledbat_data_rcvd()
405 recwin = tcp_round_to(recwin, tp->t_maxseg); in tcp_rledbat_switch_to()
H A Dtcp_ledbat.c111 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in update_cwnd()
131 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in update_cwnd()
446 win = tcp_round_to(win, tp->t_maxseg); in tcp_ledbat_pre_fr()
H A Dtcp_cubic.c335 tcp_win = tcp_round_to(tcp_win, tp->t_maxseg); in tcp_cubic_congestion_avd()
471 win = tcp_round_to(win, tp->t_maxseg); in tcp_cubic_pre_fr()
H A Dtcp_var.h1662 uint32_t tcp_round_to(uint32_t val, uint32_t round);
H A Dtcp_subr.c458 tcp_round_to(uint32_t val, uint32_t round) in tcp_round_to() function