snd_cwnd_cnt      278 include/linux/tcp.h 	u32	snd_cwnd_cnt;	/* Linear increase counter		*/
snd_cwnd_cnt     2630 net/ipv4/tcp.c 	tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      411 net/ipv4/tcp_cong.c 	if (tp->snd_cwnd_cnt >= w) {
snd_cwnd_cnt      412 net/ipv4/tcp_cong.c 		tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      416 net/ipv4/tcp_cong.c 	tp->snd_cwnd_cnt += acked;
snd_cwnd_cnt      417 net/ipv4/tcp_cong.c 	if (tp->snd_cwnd_cnt >= w) {
snd_cwnd_cnt      418 net/ipv4/tcp_cong.c 		u32 delta = tp->snd_cwnd_cnt / w;
snd_cwnd_cnt      420 net/ipv4/tcp_cong.c 		tp->snd_cwnd_cnt -= delta * w;
snd_cwnd_cnt      142 net/ipv4/tcp_highspeed.c 			tp->snd_cwnd_cnt += ca->ai + 1;
snd_cwnd_cnt      143 net/ipv4/tcp_highspeed.c 			if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
snd_cwnd_cnt      144 net/ipv4/tcp_highspeed.c 				tp->snd_cwnd_cnt -= tp->snd_cwnd;
snd_cwnd_cnt      245 net/ipv4/tcp_htcp.c 		if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tp->snd_cwnd) {
snd_cwnd_cnt      248 net/ipv4/tcp_htcp.c 			tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      251 net/ipv4/tcp_htcp.c 			tp->snd_cwnd_cnt += ca->pkts_acked;
snd_cwnd_cnt      142 net/ipv4/tcp_hybla.c 			tp->snd_cwnd_cnt++;
snd_cwnd_cnt      153 net/ipv4/tcp_hybla.c 		tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      156 net/ipv4/tcp_hybla.c 	if (increment == 0 && odd == 0 && tp->snd_cwnd_cnt >= tp->snd_cwnd) {
snd_cwnd_cnt      158 net/ipv4/tcp_hybla.c 		tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      280 net/ipv4/tcp_illinois.c 		tp->snd_cwnd_cnt += ca->acked;
snd_cwnd_cnt      286 net/ipv4/tcp_illinois.c 		delta = (tp->snd_cwnd_cnt * ca->alpha) >> ALPHA_SHIFT;
snd_cwnd_cnt      290 net/ipv4/tcp_illinois.c 			tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt     2009 net/ipv4/tcp_input.c 	tp->snd_cwnd_cnt   = 0;
snd_cwnd_cnt     2470 net/ipv4/tcp_input.c 	tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt     2585 net/ipv4/tcp_input.c 	tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      169 net/ipv4/tcp_veno.c 				if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
snd_cwnd_cnt      176 net/ipv4/tcp_veno.c 					tp->snd_cwnd_cnt = 0;
snd_cwnd_cnt      178 net/ipv4/tcp_veno.c 					tp->snd_cwnd_cnt++;
snd_cwnd_cnt       86 net/ipv4/tcp_yeah.c 		tp->snd_cwnd_cnt += yeah->pkts_acked;
snd_cwnd_cnt       87 net/ipv4/tcp_yeah.c 		if (tp->snd_cwnd_cnt > min(tp->snd_cwnd, TCP_SCALABLE_AI_CNT)) {
snd_cwnd_cnt       90 net/ipv4/tcp_yeah.c 			tp->snd_cwnd_cnt = 0;