3 implementations of InfinityExponent
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2309static int IBinaryFloatParseAndFormatInfo<double>.InfinityExponent => 0x7FF;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2357static int IBinaryFloatParseAndFormatInfo<Half>.InfinityExponent => 0x1F;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2225static int IBinaryFloatParseAndFormatInfo<float>.InfinityExponent => 0xFF;
4 references to InfinityExponent
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2541exponent = ((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;