Lines Matching defs:digit
111 int digit = number % 10;
113 buffer[(*length) + number_length] = '0' + digit;
171 // Round the last digit until we either have a digit that was not '9' or until
172 // we reached the first digit.
181 // If the first digit is now '0' + 10, we would need to set it to '0' and add
182 // a '1' in front. However we reach the first digit only if all following
184 // we simply switch the first digit to '1' and update the decimal-point
185 // (indicating that the point is now one digit to the right).
228 int digit = static_cast<int>(fractionals >> point);
229 buffer[*length] = '0' + digit;
231 fractionals -= static_cast<uint64_t>(digit) << point;
249 int digit = fractionals128.DivModPowerOf2(point);
250 buffer[*length] = '0' + digit;