3 implementations of OverflowDecimalExponent
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2308static int IBinaryFloatParseAndFormatInfo<double>.OverflowDecimalExponent => (MaxExponent + (2 * SignificandLength)) / 3;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2356static int IBinaryFloatParseAndFormatInfo<Half>.OverflowDecimalExponent => (MaxExponent + (2 * SignificandLength)) / 3;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2224static int IBinaryFloatParseAndFormatInfo<float>.OverflowDecimalExponent => (MaxExponent + (2 * SignificandLength)) / 3;
2 references to OverflowDecimalExponent
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (2)
1077if (integerDigitsMissing > TFloat.OverflowDecimalExponent) 1115if ((integerBitsOfPrecision == 0) && (fractionalDenominatorExponent - (int)(totalDigits)) > TFloat.OverflowDecimalExponent)