3 implementations of DenormalMantissaMask
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2297static ulong IBinaryFloatParseAndFormatInfo<double>.DenormalMantissaMask => TrailingSignificandMask;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2345static ulong IBinaryFloatParseAndFormatInfo<Half>.DenormalMantissaMask => TrailingSignificandMask;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2213static ulong IBinaryFloatParseAndFormatInfo<float>.DenormalMantissaMask => TrailingSignificandMask;
6 references to DenormalMantissaMask
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2540ulong fraction = (bits & TNumber.DenormalMantissaMask);
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (5)
781if (mantissa > TFloat.DenormalMantissaMask) 827mantissa &= TFloat.DenormalMantissaMask; 829Debug.Assert((TFloat.DenormalMantissaMask & (1UL << TFloat.DenormalMantissaBits)) == 0); 831Debug.Assert((shiftedExponent & TFloat.DenormalMantissaMask) == 0); 832Debug.Assert((mantissa & ~TFloat.DenormalMantissaMask) == 0);