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