14 references to kuMaskHighBit
System.Runtime.Numerics (14)
System\Numerics\BigInteger.cs (14)
47private static readonly BigInteger s_bnMinInt = new BigInteger(-1, new uint[] { kuMaskHighBit }); 232const int signMask = unchecked((int)kuMaskHighBit); 440case kuMaskHighBit: // abs(Int32.MinValue) 520if (value[0] < kuMaskHighBit) 525else if (negative && value[0] == kuMaskHighBit) 591else if (value[0] == kuMaskHighBit) 1949if (value._bits[0] > kuMaskHighBit) 2628if (digitShift == 0 && r < kuMaskHighBit) 3172Debug.Assert(_bits.Length > 1 || _bits[0] >= kuMaskHighBit); 3323if (negative && bits[^1] >= kuMaskHighBit 3324&& (leadingZeroCount != bits.Length - 1 || bits[^1] != kuMaskHighBit)) 5142if (neg && bits[^1] >= kuMaskHighBit) 5152if (bits[^1] == kuMaskHighBit && negLeadingZeroCount == bits.Length - 1) 5164rgu[^1] = kuMaskHighBit >>> smallShift;