4 implementations of NormalMantissaMask
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2293static ulong IBinaryFloatParseAndFormatInfo<double>.NormalMantissaMask => (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2340static ulong IBinaryFloatParseAndFormatInfo<Half>.NormalMantissaMask => (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2117static ulong IBinaryFloatParseAndFormatInfo<BFloat16>.NormalMantissaMask => (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2209static 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)