Lines Matching defs:iteration
88 // {k} is the number of fraction bits for the current iteration.
91 int iteration = -1; // "i" in the paper, except inverted to run downwards.
93 iteration++;
94 target_fraction_bits[iteration] = k;
98 // fraction bits to use in the base case. {iteration} is the highest index
149 // This is not the last iteration.
150 DCHECK(iteration > 0);
159 // This is the last iteration.
160 DCHECK(iteration == 0);
176 k = target_fraction_bits[iteration];
177 iteration--;
325 // First iteration unrolled and specialized.
331 // In the first iteration, all qi_len = n + 1 digits may be used.
344 // (De-duped with unrolled first iteration, hence reading A_(i).)