4 implementations of DenormalMantissaMask
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2294static ulong IBinaryFloatParseAndFormatInfo<double>.DenormalMantissaMask => TrailingSignificandMask;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2341static ulong IBinaryFloatParseAndFormatInfo<Half>.DenormalMantissaMask => TrailingSignificandMask;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2118static ulong IBinaryFloatParseAndFormatInfo<BFloat16>.DenormalMantissaMask => TrailingSignificandMask;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2210static ulong IBinaryFloatParseAndFormatInfo<float>.DenormalMantissaMask => TrailingSignificandMask;
6 references to DenormalMantissaMask
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2589ulong 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);