3 implementations of ExponentBits
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2306static ushort IBinaryFloatParseAndFormatInfo<double>.ExponentBits => 11;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2354static ushort IBinaryFloatParseAndFormatInfo<Half>.ExponentBits => 5;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2222static ushort IBinaryFloatParseAndFormatInfo<float>.ExponentBits => 8;
1 reference to ExponentBits
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
833Debug.Assert((shiftedExponent & ~(((1UL << TFloat.ExponentBits) - 1) << TFloat.DenormalMantissaBits)) == 0); // exponent fits in its place