4 implementations of MaxBinaryExponent
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2566static int IBinaryFloatParseAndFormatInfo<double>.MaxBinaryExponent => MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2409static int IBinaryFloatParseAndFormatInfo<Half>.MaxBinaryExponent => MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2130static int IBinaryFloatParseAndFormatInfo<BFloat16>.MaxBinaryExponent => MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2254static int IBinaryFloatParseAndFormatInfo<float>.MaxBinaryExponent => MaxExponent;
4 references to MaxBinaryExponent
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
747if (normalExponent > TFloat.MaxBinaryExponent) 828if (exponent > TFloat.MaxBinaryExponent) 1314exponent = (int)(CalculatePower((int)(q)) + upperBit - lz - (-TFloat.MaxBinaryExponent));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1490if (actualExp > TFloat.MaxBinaryExponent)