6 references to SignMask
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
83
internal const byte ShiftedSignMask = (byte)(
SignMask
>> SignShift);
202
return ((bits - 1) & ~
SignMask
) >= PositiveInfinityBits;
src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
576
bool sign = (doubleInt & double.
SignMask
) >> double.SignShift != 0;
1012
return BitConverter.UInt64BitsToDouble(sign ? double.
SignMask
: 0); // Positive / Negative zero
src\libraries\System.Private.CoreLib\src\System\Math.cs (2)
382
return BitConverter.UInt64BitsToDouble((xbits & ~double.
SignMask
) | (ybits & double.
SignMask
));