Symbol: cwnd
usr/src/stand/lib/tcp/tcp.c
2631
uint32_t cwnd;
usr/src/stand/lib/tcp/tcp.c
3626
cwnd = tcp->tcp_cwnd + mss;
usr/src/stand/lib/tcp/tcp.c
3627
if (cwnd > tcp->tcp_cwnd_max)
usr/src/stand/lib/tcp/tcp.c
3628
cwnd = tcp->tcp_cwnd_max;
usr/src/stand/lib/tcp/tcp.c
3629
tcp->tcp_cwnd = cwnd;
usr/src/stand/lib/tcp/tcp.c
3817
cwnd = tcp->tcp_cwnd;
usr/src/stand/lib/tcp/tcp.c
3820
if (cwnd >= tcp->tcp_cwnd_ssthresh) {
usr/src/stand/lib/tcp/tcp.c
3832
tcp->tcp_cwnd_cnt = cwnd + add;
usr/src/stand/lib/tcp/tcp.c
3838
tcp->tcp_cwnd = MIN(cwnd + add, tcp->tcp_cwnd_max);
usr/src/uts/common/inet/cc/cc_cubic.h
178
int64_t t, cwnd;
usr/src/uts/common/inet/cc/cc_cubic.h
196
cwnd = (t - K * MILLISEC) / MILLISEC;
usr/src/uts/common/inet/cc/cc_cubic.h
198
if (cwnd > CUBED_ROOT_MAX_ULONG)
usr/src/uts/common/inet/cc/cc_cubic.h
200
if (cwnd < -CUBED_ROOT_MAX_ULONG)
usr/src/uts/common/inet/cc/cc_cubic.h
204
cwnd *= (cwnd * cwnd);
usr/src/uts/common/inet/cc/cc_cubic.h
212
cwnd = ((cwnd * CUBIC_C_FACTOR * smss) >> CUBIC_SHIFT_4) + wmax;
usr/src/uts/common/inet/cc/cc_cubic.h
217
return (max(0, cwnd));
usr/src/uts/common/inet/cc/cc_sunreno.c
111
CCV(ccv, tcp_cwnd_cnt) = cwnd + add;
usr/src/uts/common/inet/cc/cc_sunreno.c
117
CCV(ccv, tcp_cwnd) = MIN(cwnd + add, CCV(ccv, tcp_cwnd_max));
usr/src/uts/common/inet/cc/cc_sunreno.c
91
uint32_t cwnd;
usr/src/uts/common/inet/cc/cc_sunreno.c
96
cwnd = CCV(ccv, tcp_cwnd);
usr/src/uts/common/inet/cc/cc_sunreno.c
99
if (cwnd >= CCV(ccv, tcp_cwnd_ssthresh)) {
usr/src/uts/common/inet/tcp/tcp_input.c
2506
uint32_t cwnd;
usr/src/uts/common/inet/tcp/tcp_input.c
4244
cwnd = tcp->tcp_cwnd + mss;
usr/src/uts/common/inet/tcp/tcp_input.c
4245
if (cwnd > tcp->tcp_cwnd_max)
usr/src/uts/common/inet/tcp/tcp_input.c
4246
cwnd = tcp->tcp_cwnd_max;
usr/src/uts/common/inet/tcp/tcp_input.c
4250
uint32_t, cwnd);
usr/src/uts/common/inet/tcp/tcp_input.c
4251
tcp->tcp_cwnd = cwnd;
usr/src/uts/common/inet/tcp/tcp_input.c
4415
cwnd = tcp->tcp_cwnd_ssthresh +
usr/src/uts/common/inet/tcp/tcp_input.c
4419
uint32_t, cwnd);
usr/src/uts/common/inet/tcp/tcp_input.c
4420
tcp->tcp_cwnd = cwnd;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/5710_hsi.h
6738
u32_t cwnd /* Congestion window */;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
2298
ttcp_st->cwnd = tcp->tcp_delegated.send_cwin - tcp->tcp_delegated.send_una; /* i.e. ndis_tcp_delegated->CWnd */
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
2302
if (ttcp_st->cwnd == 0xffffffff) {
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
2303
ttcp_st->cwnd = 0x40000000;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
5389
tcp->tcp_delegated.send_cwin = tst_tcp->cwnd + tcp->tcp_delegated.send_una;
usr/src/uts/common/io/qede/579xx/drivers/ecore/hsi_repository/tcp_common.h
133
__le32 cwnd /* absolute congestion window */;
usr/src/uts/common/io/qede/579xx/drivers/ecore/hsi_repository/tcp_common.h
288
__le32 cwnd /* absolute congestion window */;