Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/netinet/
H A Dtcp_rledbat.c184 tp->t_rlstate.win = min(tcp_round_to(tp->t_rlstate.win, in rledbat_congestion_avd()
215 tp->t_rlstate.win = tcp_round_to(tp->t_rlstate.win, tp->t_maxseg); in rledbat_congestion_avd()
291 win = tcp_round_to(win, tp->t_maxseg); in tcp_rledbat_data_rcvd()
339 tp->t_rlstate.win = min(tcp_round_to(tp->t_rlstate.win, in tcp_rledbat_data_rcvd()
409 win = tcp_round_to(win, tp->t_maxseg); in tcp_rledbat_switch_to()
H A Dtcp_ledbat.c177 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in update_cwnd()
197 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in update_cwnd()
517 win = tcp_round_to(win, tp->t_maxseg); in tcp_ledbat_pre_fr()
H A Dtcp_cubic.c364 tcp_win = tcp_round_to(tcp_win, tp->t_maxseg); in tcp_cubic_congestion_avd()
500 win = tcp_round_to(win, tp->t_maxseg); in tcp_cubic_pre_fr()
H A Dtcp_var.h1602 uint32_t tcp_round_to(uint32_t val, uint32_t round);
H A Dtcp_subr.c448 tcp_round_to(uint32_t val, uint32_t round) in tcp_round_to() function