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