Searched refs:BYTES_ACKED (Results 1 – 7 of 7) sorted by relevance
| /xnu-11417.101.15/bsd/netinet/ |
| H A D | tcp_newreno.c | 143 acked = BYTES_ACKED(th, tp); in tcp_newreno_congestion_avd() 178 acked = BYTES_ACKED(th, tp); in tcp_newreno_ack_rcvd()
|
| H A D | tcp_cubic.c | 244 tp->t_ccstate->cub_tcp_bytes_acked = BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 249 tp->t_ccstate->cub_tcp_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_tcpwin() 293 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd() 374 acked = BYTES_ACKED(th, tp); in tcp_cubic_ack_rcvd()
|
| H A D | tcp_ledbat.c | 199 acked = BYTES_ACKED(th, tp); in tcp_ledbat_congestion_avd() 396 acked = BYTES_ACKED(th, tp); in tcp_ledbat_ack_rcvd()
|
| H A D | tcp_prague.c | 165 tp->t_ccstate->reno_acked = BYTES_ACKED(th, tp); in reno_friendly_win() 167 tp->t_ccstate->reno_acked += BYTES_ACKED(th, tp); in reno_friendly_win()
|
| H A D | tcp_input.c | 1364 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state() 2974 if (tp->t_state == TCPS_ESTABLISHED && BYTES_ACKED(th, tp) > 0) { in tcp_input() 2976 CC_ALGO(tp)->set_bytes_acked(tp, BYTES_ACKED(th, tp)); in tcp_input() 2985 uint32_t bytes_acked = tcp_round_to(BYTES_ACKED(th, tp), tp->t_maxseg); in tcp_input() 3248 acked = BYTES_ACKED(th, tp); in tcp_input() 5353 acked = BYTES_ACKED(th, tp); in tcp_input() 7175 tp->snd_cwnd = tp->t_maxseg + BYTES_ACKED(th, tp); in tcp_newreno_partial_ack() 7185 if (tp->snd_cwnd > BYTES_ACKED(th, tp)) { in tcp_newreno_partial_ack() 7186 tp->snd_cwnd -= BYTES_ACKED(th, tp); in tcp_newreno_partial_ack()
|
| H A D | tcp_sack.c | 717 if (((BYTES_ACKED(th, tp)) / tp->t_maxseg) > 2) { in tcp_sack_partialack()
|
| H A D | tcp_var.h | 977 #define BYTES_ACKED(_th_, _tp_) \ macro
|