Lines Matching refs:digit
137 int digit = number % 10;
139 buffer[(*length) + number_length] = '0' + digit;
200 // Round the last digit until we either have a digit that was not '9' or until
201 // we reached the first digit.
210 // If the first digit is now '0' + 10, we would need to set it to '0' and add
211 // a '1' in front. However we reach the first digit only if all following
213 // we simply switch the first digit to '1' and update the decimal-point
214 // (indicating that the point is now one digit to the right).
258 int digit = static_cast<int>(fractionals >> point);
259 buffer[*length] = '0' + digit;
261 fractionals -= static_cast<uint64_t>(digit) << point;
279 int digit = fractionals128.DivModPowerOf2(point);
280 buffer[*length] = '0' + digit;