8 references to kuMaskHighBit
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
47
private static readonly BigInteger s_bnMinInt = new BigInteger(-1, new uint[] {
kuMaskHighBit
});
232
const int signMask = unchecked((int)
kuMaskHighBit
);
440
case
kuMaskHighBit
: // abs(Int32.MinValue)
516
if (value[0] <
kuMaskHighBit
)
521
else if (negative && value[0] ==
kuMaskHighBit
)
587
else if (value[0] ==
kuMaskHighBit
)
1889
if (value._bits[0] >
kuMaskHighBit
)
3136
Debug.Assert(_bits.Length > 1 || _bits[0] >=
kuMaskHighBit
);