reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2477 interpretDecimal(p, str.end(), &D); 2503 if (D.firstSigDigit == str.end() || decDigitValue(*D.firstSigDigit) >= 10U) { 2503 if (D.firstSigDigit == str.end() || decDigitValue(*D.firstSigDigit) >= 10U) { 2509 } else if (D.normalizedExponent - 1 > INT_MAX / 42039) { 2516 } else if (D.normalizedExponent - 1 < INT_MIN / 42039 || 2517 (D.normalizedExponent + 1) * 28738 <= 2525 } else if ((D.normalizedExponent - 1) * 42039 2537 partCount = static_cast<unsigned int>(D.lastSigDigit - D.firstSigDigit) + 1; 2537 partCount = static_cast<unsigned int>(D.lastSigDigit - D.firstSigDigit) + 1; 2565 } while (p <= D.lastSigDigit && multiplier <= (~ (integerPart) 0 - 9) / 10); 2575 } while (p <= D.lastSigDigit); 2579 D.exponent, rounding_mode);