Searched refs:cwin (Results 1 – 11 of 11) sorted by relevance
| /freebsd/sys/netinet/cc/ |
| H A D | cc_dctcp.c | 244 uint32_t cwin, mss, pipe; in dctcp_cong_signal() local 248 cwin = CCV(ccv, snd_cwnd); in dctcp_cong_signal() 256 max(cwin / 2, 2 * mss); in dctcp_cong_signal() 263 cwin = CCV(ccv, snd_cwnd_prev); in dctcp_cong_signal() 265 max(cwin / 2, 2 * mss); in dctcp_cong_signal() 275 CCV(ccv, snd_cwnd_prev) = cwin; in dctcp_cong_signal() 280 max(cwin / 2, 2 * mss); in dctcp_cong_signal() 287 max((cwin - (((uint64_t)cwin * in dctcp_cong_signal()
|
| H A D | cc_cubic.c | 239 uint32_t W_est, W_cubic, cwin, target, incr; in cubic_ack_received() local 243 cwin = CCV(ccv, snd_cwnd); in cubic_ack_received() 254 if (cwin <= CCV(ccv, snd_ssthresh) || in cubic_ack_received() 282 cubic_data->cwnd_epoch = cwin; in cubic_ack_received() 292 cubic_data->W_max = cwin; in cubic_ack_received() 323 if (W_cubic < cwin) { in cubic_ack_received() 324 target = cwin; in cubic_ack_received() 325 } else if (W_cubic > ((cwin * 3) >> 1)) { in cubic_ack_received() 326 target = (cwin * 3) >> 1; in cubic_ack_received() 330 incr = (((target - cwin) << CUBIC_SHIFT) / in cubic_ack_received() [all …]
|
| H A D | cc.c | 452 uint32_t cwin, factor; in newreno_cc_cwnd_on_multiplicative_decrease() local 454 cwin = CCV(ccv, snd_cwnd); in newreno_cc_cwnd_on_multiplicative_decrease() 462 return max(((uint64_t)cwin * (uint64_t)factor) / (100ULL * (uint64_t)mss), 2) * mss; in newreno_cc_cwnd_on_multiplicative_decrease() 471 uint32_t cwin, mss, pipe; in newreno_cc_cong_signal() local 479 cwin = newreno_cc_cwnd_on_multiplicative_decrease(ccv, mss); in newreno_cc_cong_signal() 485 CCV(ccv, snd_ssthresh) = cwin; in newreno_cc_cong_signal() 491 CCV(ccv, snd_ssthresh) = cwin; in newreno_cc_cong_signal() 492 CCV(ccv, snd_cwnd) = cwin; in newreno_cc_cong_signal()
|
| H A D | cc_newreno.c | 369 uint32_t beta, beta_ecn, cwin, factor, mss, pipe; in newreno_cong_signal() local 371 cwin = CCV(ccv, snd_cwnd); in newreno_cong_signal() 393 cwin = max(((uint64_t)cwin * (uint64_t)factor) / (100ULL * (uint64_t)mss), in newreno_cong_signal() 412 CCV(ccv, snd_ssthresh) = cwin; in newreno_cong_signal() 424 CCV(ccv, snd_ssthresh) = cwin; in newreno_cong_signal() 425 CCV(ccv, snd_cwnd) = cwin; in newreno_cong_signal()
|
| /freebsd/sys/netinet/ |
| H A D | tcp_output.c | 294 int32_t cwin; in tcp_default_output() local 297 cwin = imax(sendwin - tcp_compute_pipe(tp), 0); in tcp_default_output() 299 cwin = imax(sendwin - off, 0); in tcp_default_output() 321 if (cwin <= len) { in tcp_default_output() 322 len = cwin; in tcp_default_output() 329 if (cwin <= len) { in tcp_default_output() 330 len = cwin; in tcp_default_output()
|
| /freebsd/contrib/ncurses/include/ |
| H A D | Caps.hpux11 | 667 create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5
|
| H A D | Caps.osf1r5 | 621 create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5
|
| H A D | Caps | 667 create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5
|
| H A D | Caps.aix4 | 761 create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5
|
| H A D | Caps.keys | 662 create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5
|
| /freebsd/sys/netinet/tcp_stacks/ |
| H A D | rack.c | 20032 long cwin; in rack_output() local 20054 cwin = min(tp->snd_wnd, tlen); in rack_output() 20055 len = cwin; in rack_output()
|