Lines Matching defs:count
53 // Generates 'count' digits of numerator/denominator.
54 // Once 'count' digits have been produced rounds the result depending on the
57 static void GenerateCountedDigits(int count, int* decimal_point,
227 // Then we generate 'count' digits of d = x.xxxxx... (without the decimal point)
228 // from left to right. Once 'count' digits have been produced we decide wether
232 static void GenerateCountedDigits(int count, int* decimal_point,
235 DCHECK_GE(count, 0);
236 for (int i = 0; i < count - 1; ++i) {
252 buffer[count - 1] = digit + '0';
255 for (int i = count - 1; i > 0; --i) {
265 *length = count;