Searched refs:cw (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_newreno.c232 register u_int cw = tp->snd_cwnd; local
239 if (cw >= tp->snd_ssthresh) {
241 if (tp->t_bytes_acked >= cw) {
243 tp->t_bytes_acked -= cw;
271 if (cw >= tp->snd_ssthresh)
272 incr = max((incr * incr / cw), 1);
274 tp->snd_cwnd = min(cw+incr, TCP_MAXWIN<<tp->snd_scale);
H A Dtcp_ledbat.c259 register u_int cw = tp->snd_cwnd; local
265 if (cw >= tp->bg_ssthresh) {
267 if (tp->t_bytes_acked < cw) {
286 if (tp->t_bytes_acked >= cw)
287 tp->t_bytes_acked -= cw;

Completed in 37 milliseconds