3 implementations of NormalMantissaMask
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2296static ulong IBinaryFloatParseAndFormatInfo<double>.NormalMantissaMask => (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2344static ulong IBinaryFloatParseAndFormatInfo<Half>.NormalMantissaMask => (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2212static ulong IBinaryFloatParseAndFormatInfo<float>.NormalMantissaMask => (1UL << SignificandLength) - 1;
1 reference to NormalMantissaMask
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
806if (mantissa > TFloat.NormalMantissaMask)