3 implementations of MaxBinaryExponent
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2300static int IBinaryFloatParseAndFormatInfo<double>.MaxBinaryExponent => MaxExponent;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2348static int IBinaryFloatParseAndFormatInfo<Half>.MaxBinaryExponent => MaxExponent;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2216static int IBinaryFloatParseAndFormatInfo<float>.MaxBinaryExponent => MaxExponent;
3 references to MaxBinaryExponent
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
732if (normalExponent > TFloat.MaxBinaryExponent) 813if (exponent > TFloat.MaxBinaryExponent) 1324exponent = (int)(CalculatePower((int)(q)) + upperBit - lz - (-TFloat.MaxBinaryExponent));