4 implementations of InfinityExponent
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2575static int IBinaryFloatParseAndFormatInfo<double>.InfinityExponent => 0x7FF;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2418static int IBinaryFloatParseAndFormatInfo<Half>.InfinityExponent => MaxBiasedExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2139static int IBinaryFloatParseAndFormatInfo<BFloat16>.InfinityExponent => MaxBiasedExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2263static int IBinaryFloatParseAndFormatInfo<float>.InfinityExponent => 0xFF;
5 references to InfinityExponent
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
3027exponent = ((int)(bits >> TNumber.DenormalMantissaBits) & TNumber.InfinityExponent);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
1278exponent = TFloat.InfinityExponent; 1371if (exponent >= TFloat.InfinityExponent) 1374exponent = TFloat.InfinityExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1534if (biasedExp >= TFloat.InfinityExponent)