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