3 implementations of NormalMantissaBits
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2311static ushort IBinaryFloatParseAndFormatInfo<double>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2359static ushort IBinaryFloatParseAndFormatInfo<Half>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2227static ushort IBinaryFloatParseAndFormatInfo<float>.NormalMantissaBits => SignificandLength;
2 references to NormalMantissaBits
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (2)
726int normalMantissaShift = TFloat.NormalMantissaBits - (int)(initialMantissaBits); 1061uint requiredBitsOfPrecision = (uint)(TFloat.NormalMantissaBits + 1);