4 implementations of InfinityExponent
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2306static int IBinaryFloatParseAndFormatInfo<double>.InfinityExponent => 0x7FF;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2353static int IBinaryFloatParseAndFormatInfo<Half>.InfinityExponent => MaxBiasedExponent;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2130static int IBinaryFloatParseAndFormatInfo<BFloat16>.InfinityExponent => MaxBiasedExponent;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2222static int IBinaryFloatParseAndFormatInfo<float>.InfinityExponent => 0xFF;
4 references to InfinityExponent
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2590exponent = ((int)(bits >> TNumber.DenormalMantissaBits) & TNumber.InfinityExponent);
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
1288exponent = TFloat.InfinityExponent; 1381if (exponent >= TFloat.InfinityExponent) 1384exponent = TFloat.InfinityExponent;