Lines Matching refs:digit_count
14606 // - for an input of "314159", digit_count is 6.
14607 // - for an input of "3.14159", digit_count is 7.
14612 uint32_t digit_count = (uint32_t)(p - start_of_digits_ptr);
14657 // digit_count.
14666 if (digit_count > 19) {
14668 // overflow. Recall that digit_count might be off-by-one (too large) if
14678 digit_count -= (uint32_t)(q - start_of_digits_ptr);
14679 if (digit_count > 19) {