target_cwnd       521 net/ipv4/tcp_bbr.c 	u32 cwnd = tp->snd_cwnd, target_cwnd = 0;
target_cwnd       529 net/ipv4/tcp_bbr.c 	target_cwnd = bbr_bdp(sk, bw, gain);
target_cwnd       534 net/ipv4/tcp_bbr.c 	target_cwnd += bbr_ack_aggregation_cwnd(sk);
target_cwnd       535 net/ipv4/tcp_bbr.c 	target_cwnd = bbr_quantization_budget(sk, target_cwnd);
target_cwnd       539 net/ipv4/tcp_bbr.c 		cwnd = min(cwnd + acked, target_cwnd);
target_cwnd       540 net/ipv4/tcp_bbr.c 	else if (cwnd < target_cwnd || tp->delivered < TCP_INIT_CWND)
target_cwnd       199 net/ipv4/tcp_vegas.c 			u64 target_cwnd;
target_cwnd       220 net/ipv4/tcp_vegas.c 			target_cwnd = (u64)tp->snd_cwnd * vegas->baseRTT;
target_cwnd       221 net/ipv4/tcp_vegas.c 			do_div(target_cwnd, rtt);
target_cwnd       241 net/ipv4/tcp_vegas.c 				tp->snd_cwnd = min(tp->snd_cwnd, (u32)target_cwnd+1);
target_cwnd       140 net/ipv4/tcp_veno.c 		u64 target_cwnd;
target_cwnd       149 net/ipv4/tcp_veno.c 		target_cwnd = (u64)tp->snd_cwnd * veno->basertt;
target_cwnd       150 net/ipv4/tcp_veno.c 		target_cwnd <<= V_PARAM_SHIFT;
target_cwnd       151 net/ipv4/tcp_veno.c 		do_div(target_cwnd, rtt);
target_cwnd       153 net/ipv4/tcp_veno.c 		veno->diff = (tp->snd_cwnd << V_PARAM_SHIFT) - target_cwnd;