14 references to kuMaskHighBit
System.Runtime.Numerics (14)
System\Numerics\BigInteger.cs (14)
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)
520
if (value[0] <
kuMaskHighBit
)
525
else if (negative && value[0] ==
kuMaskHighBit
)
591
else if (value[0] ==
kuMaskHighBit
)
1921
if (value._bits[0] >
kuMaskHighBit
)
3168
Debug.Assert(_bits.Length > 1 || _bits[0] >=
kuMaskHighBit
);
3284
if (negx && (bits[^1] >=
kuMaskHighBit
) && ((bits[^1] !=
kuMaskHighBit
) || bits.IndexOfAnyExcept(0u) != (bits.Length - 1)))
3439
if (negx && (bits[^1] >=
kuMaskHighBit
) && ((bits[^1] !=
kuMaskHighBit
) || bits.IndexOfAnyExcept(0u) != (bits.Length - 1)))
5291
if (negx && (bits[^1] >=
kuMaskHighBit
) && ((bits[^1] !=
kuMaskHighBit
) || bits.IndexOfAnyExcept(0u) != (bits.Length - 1)))