Home
last modified time | relevance | path

Searched refs:cw (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.81.4/bsd/netinet/
H A Dtcp_newreno.c178 uint32_t cw = tp->snd_cwnd; in tcp_newreno_ack_rcvd() local
183 if (cw >= tp->snd_ssthresh) { in tcp_newreno_ack_rcvd()
185 if (tp->t_bytes_acked >= cw) { in tcp_newreno_ack_rcvd()
187 tp->t_bytes_acked -= cw; in tcp_newreno_ack_rcvd()
205 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN << tp->snd_scale); in tcp_newreno_ack_rcvd()
H A Dtcp_ledbat.c396 uint32_t cw = tp->snd_cwnd; in tcp_ledbat_ack_rcvd() local
409 if (cw >= tp->bg_ssthresh) { in tcp_ledbat_ack_rcvd()
411 if (tp->t_bytes_acked < cw) { in tcp_ledbat_ack_rcvd()
429 if (tp->t_bytes_acked >= cw) { in tcp_ledbat_ack_rcvd()
430 tp->t_bytes_acked -= cw; in tcp_ledbat_ack_rcvd()
/xnu-12377.81.4/osfmk/kern/
H A Dexclaves_aoe.c502 const xnuupcallsv2_aoeworkinfo_conclavework_s *cw = variable
506 assert3p(cw, !=, NULL);
508 exclavesmessagequeuetypes_serviceidentifier_s id = cw->field0;