4 implementations of NormalMantissaBits
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2308static ushort IBinaryFloatParseAndFormatInfo<double>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2355static ushort IBinaryFloatParseAndFormatInfo<Half>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2132static ushort IBinaryFloatParseAndFormatInfo<BFloat16>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2224static 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 - initialMantissaBits; 1061int requiredBitsOfPrecision = TFloat.NormalMantissaBits + 1;