Lines Matching defs:digit
78 return 1; // 1: means the decimal digit
80 return 2; // 2: means the decimal digit
82 return 3; // 3: means the decimal digit
84 return 4; // 4: means the decimal digit
86 return 5; // 5: means the decimal digit
88 return 6; // 6: means the decimal digit
90 return 7; // 7: means the decimal digit
92 return 8; // 8: means the decimal digit
94 return 9; // 9: means the decimal digit
110 case 9: // 9: means the decimal digit
114 case 8: // 8: means the decimal digit
118 case 7: // 7: means the decimal digit
122 case 6: // 6: means the decimal digit
126 case 5: // 5: means the decimal digit
130 case 4: // 4: means the decimal digit
134 case 3: // 3: means the decimal digit
138 case 2: // 2: means the decimal digit
142 case 1: // 1: means the decimal digit
226 int digit = static_cast<int>(number % TEN);
228 buffer[(*length) + number_length] = '0' + digit;
266 FillDigits32FixedLength(part1, 7, buffer, length); // 7: means the decimal digit
267 FillDigits32FixedLength(part2, 7, buffer, length); // 7: means the decimal digit
270 FillDigits32FixedLength(part2, 7, buffer, length); // 7: means the decimal digit
287 if (buffer[i] != '0' + 10) { // 10: means the decimal digit
293 if (buffer[0] == '0' + 10) { // 10: means the decimal digit
314 int digit = static_cast<int>(fractionals >> point);
315 buffer[*length] = '0' + digit;
317 fractionals -= static_cast<uint64_t>(digit) << point;
335 int digit = fractionals128.DivModPowerOf2(point);
336 buffer[*length] = '0' + digit;