Lines Matching refs:beta
28 u8 beta; /* Fixed point arith, << 7 */
155 ca->beta = BETA_MIN;
162 ca->beta = (minRTT << 7) / maxRTT;
163 if (ca->beta < BETA_MIN)
164 ca->beta = BETA_MIN;
165 else if (ca->beta > BETA_MAX)
166 ca->beta = BETA_MAX;
168 ca->beta = BETA_MIN;
194 ca->alpha = 2 * factor * ((1 << 7) - ca->beta);
200 * After we have the rtt data to calculate beta, we'd still prefer to wait one
201 * rtt before we adjust our beta to ensure we are working from a consistent
228 return max((tp->snd_cwnd * ca->beta) >> 7, 2U);
263 ca->beta = BETA_MIN;