Lines Matching refs:next
283 // the square of the previously-created "next" level's divisor. Preparation
336 explicit RecursionLevel(RecursionLevel* next)
337 : char_count_(next->char_count_ * 2),
338 next_(next),
339 divisor_(next->divisor_.len() * 2) {
340 next->is_toplevel_ = false;
364 // We can stop creating levels when the next level's divisor, which is the
367 // next divisor is expensive, we want to predict the necessity based on bit
384 // compute the next divisor.
460 // even after left-shifting, fall through to the next level immediately.
479 // it directly on the next level as the right half, and know that the
500 // Allocate one extra digit so the next level can left-shift in-place.