8 references to SignMask
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (3)
85internal const byte ShiftedSignMask = (byte)(SignMask >> SignShift); 167internal static double CreateDouble(bool sign, ushort exp, ulong sig) => BitConverter.UInt64BitsToDouble((sign ? SignMask : 0UL) + ((ulong)exp << BiasedExponentShift) + sig); 206return ((bits - 1) & ~SignMask) >= PositiveInfinityBits;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
598bool sign = (doubleInt & double.SignMask) >> double.SignShift != 0; 1044return BitConverter.UInt64BitsToDouble(sign ? double.SignMask : 0); // Positive / Negative zero
src\runtime\src\libraries\System.Private.CoreLib\src\System\Math.cs (2)
383return BitConverter.UInt64BitsToDouble((xbits & ~double.SignMask) | (ybits & double.SignMask));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
470ulong sign = (bitValue & double.SignMask) >> 48;