beta               32 net/ipv4/tcp_bic.c static int beta = 819;		/* = 819/1024 (BICTCP_BETA_SCALE) */
beta              179 net/ipv4/tcp_bic.c 		ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
beta              190 net/ipv4/tcp_bic.c 		return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U);
beta               27 net/ipv4/tcp_cubic.c static int beta __read_mostly = 717;	/* = 717/1024 (BICTCP_BETA_SCALE) */
beta              265 net/ipv4/tcp_cubic.c 		ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
beta              272 net/ipv4/tcp_cubic.c 	return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U);
beta              338 net/ipv4/tcp_cubic.c 	beta_scale = 8*(BICTCP_BETA_SCALE+beta)/ 3 / (BICTCP_BETA_SCALE - beta);
beta               27 net/ipv4/tcp_htcp.c 	u8	beta;           /* Fixed point arith, << 7 */
beta               76 net/ipv4/tcp_htcp.c 	return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta);
beta              152 net/ipv4/tcp_htcp.c 			ca->beta = BETA_MIN;
beta              159 net/ipv4/tcp_htcp.c 		ca->beta = (minRTT << 7) / maxRTT;
beta              160 net/ipv4/tcp_htcp.c 		if (ca->beta < BETA_MIN)
beta              161 net/ipv4/tcp_htcp.c 			ca->beta = BETA_MIN;
beta              162 net/ipv4/tcp_htcp.c 		else if (ca->beta > BETA_MAX)
beta              163 net/ipv4/tcp_htcp.c 			ca->beta = BETA_MAX;
beta              165 net/ipv4/tcp_htcp.c 		ca->beta = BETA_MIN;
beta              191 net/ipv4/tcp_htcp.c 	ca->alpha = 2 * factor * ((1 << 7) - ca->beta);
beta              225 net/ipv4/tcp_htcp.c 	return max((tp->snd_cwnd * ca->beta) >> 7, 2U);
beta              260 net/ipv4/tcp_htcp.c 	ca->beta = BETA_MIN;
beta               51 net/ipv4/tcp_illinois.c 	u32	beta;		/* Muliplicative decrease */
beta               74 net/ipv4/tcp_illinois.c 	ca->beta = BETA_BASE;
beta              228 net/ipv4/tcp_illinois.c 		ca->beta = BETA_BASE;
beta              234 net/ipv4/tcp_illinois.c 		ca->beta = beta(da, dm);
beta              249 net/ipv4/tcp_illinois.c 		ca->beta = BETA_BASE;
beta              300 net/ipv4/tcp_illinois.c 	return max(tp->snd_cwnd - ((tp->snd_cwnd * ca->beta) >> BETA_SHIFT), 2U);
beta               48 net/ipv4/tcp_vegas.c static int beta  = 4<<V_PARAM_SHIFT;
beta              299 net/ipv4/tcp_vegas.c 				if (diff > beta) {
beta               23 net/ipv4/tcp_veno.c static const int beta = 3 << V_PARAM_SHIFT;
beta              158 net/ipv4/tcp_veno.c 			if (veno->diff < beta) {
beta              202 net/ipv4/tcp_veno.c 	if (veno->diff < beta)