3 implementations of NormalMantissaMask
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2296
static ulong IBinaryFloatParseAndFormatInfo<double>.
NormalMantissaMask
=> (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2344
static ulong IBinaryFloatParseAndFormatInfo<Half>.
NormalMantissaMask
=> (1UL << SignificandLength) - 1;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2212
static 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)
806
if (mantissa > TFloat.
NormalMantissaMask
)