Searched defs:rho (Results 1 - 2 of 2) sorted by relevance

/net/ipv4/
H A Dtcp_hybla.c20 u32 rho; /* Rho parameter, integer part */ member in struct:hybla
39 ca->rho = ca->rho_3ls >> 3;
49 ca->rho = 0;
63 tp->snd_cwnd = ca->rho;
95 /* Recalculate rho only if this srtt is the lowest */
109 if (ca->rho == 0)
112 rho_fractions = ca->rho_3ls - (ca->rho << 3);
118 * This is done by splitting the rho parameter
129 increment = ((1 << min(ca->rho, 16U)) *
135 * as long as increment is estimated as (rho<<
[all...]
/net/sched/
H A Dsch_netem.c97 u32 rho; member in struct:netem_sched_data::crndstate
142 static void init_crandom(struct crndstate *state, unsigned long rho) argument
144 state->rho = rho;
150 * rho is scaled to avoid floating point.
154 u64 value, rho; local
157 if (state->rho == 0) /* no correlation */
161 rho = (u64)state->rho + 1;
162 answer = (value * ((1ull<<32) - rho)
[all...]

Completed in 119 milliseconds