Home
last modified time | relevance | path

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

/xnu-11417.121.6/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_prague.c214 reno_win = tcp_round_to(reno_win, tp->t_maxseg); in tcp_cubic_ack_ca()
276 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in tcp_prague_ack_rcvd()
314 win = tcp_round_to(win, tp->t_maxseg); in tcp_prague_pre_fr()
502 tp->snd_cwnd = tcp_round_to(tp->snd_cwnd, tp->t_maxseg); in prague_cwr()
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.h1857 uint32_t tcp_round_to(uint32_t val, uint32_t round);
H A Dtcp_subr.c456 tcp_round_to(uint32_t val, uint32_t round) in tcp_round_to() function
H A Dtcp_input.c2985 uint32_t bytes_acked = tcp_round_to(BYTES_ACKED(th, tp), tp->t_maxseg); in tcp_input()