Lines Matching refs:current
366 bool ShouldDecrementM(const Parameters& current, const Parameters& next,
369 if (current.K == 64 && next.K >= 112) return false;
371 if (current.s < 6) return true;
380 double factor = static_cast<double>(after_next.K) / current.K;
381 if ((current.s == 6 && factor < 3.85) || // --
382 (current.s == 7 && factor < 3.73) || // --
383 (current.s == 8 && factor < 3.55) || // --
384 (current.s == 9 && factor < 3.50) || // --
392 if (current.K >= 160 && current.K < 250 && PredictInnerK(next.K) < 28) {
406 Parameters current;
407 ComputeParameters(N, m, ¤t);
413 if (ShouldDecrementM(current, next, after_next)) {
415 current = next;
421 *params = current;