Searched refs:t_bytes_acked (Results 1 - 5 of 5) sorted by relevance

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_newreno.c208 tp->t_bytes_acked += acked;
209 if (tp->t_bytes_acked > tp->snd_cwnd) {
210 tp->t_bytes_acked -= tp->snd_cwnd;
240 tp->t_bytes_acked += acked;
241 if (tp->t_bytes_acked >= cw) {
243 tp->t_bytes_acked -= cw;
314 tp->t_bytes_acked = 0;
425 tp->t_bytes_acked = 0;
H A Dtcp_ledbat.c232 tp->t_bytes_acked += acked;
233 if (tp->t_bytes_acked > tp->snd_cwnd) {
234 tp->t_bytes_acked -= tp->snd_cwnd;
264 tp->t_bytes_acked += acked;
267 if (tp->t_bytes_acked < cw) {
286 if (tp->t_bytes_acked >= cw)
287 tp->t_bytes_acked -= cw;
330 tp->t_bytes_acked = 0;
441 tp->t_bytes_acked = 0;
H A Dtcp_var.h328 u_int32_t t_bytes_acked; /* ABC "bytes_acked" parameter */ member in struct:tcpcb
481 (_tp_)->t_bytes_acked = 0; \
H A Dtcp_output.c2118 tp->t_bytes_acked = 0;
H A Dtcp_input.c5304 tp->t_bytes_acked = 0;

Completed in 206 milliseconds