11 references to UInt32HighBit
System.Runtime.Numerics (11)
System\Numerics\BigInteger.cs (11)
59private static readonly BigInteger s_int32MinValue = new(-1, [UInt32HighBit]); 479else if (val[0] == UInt32HighBit) // abs(int.MinValue) 484else if (val[0] < UInt32HighBit) // fits in int as negative 554else if (value.Length == 1 && value[0] < UInt32HighBit) 559else if (value.Length == 1 && negative && value[0] == UInt32HighBit) 622else if (nint.Size == 4 && value[0] == UInt32HighBit) 634if (magnitude < UInt32HighBit) 654else if (value[0] >= UInt32HighBit) 2095if (value._bits[0] > UInt32HighBit) 3335? ((uint)bits[^1] == UInt32HighBit && firstNonZeroLimb == bits.Length - 1) 3336: (bits[^1] == ((nuint)UInt32HighBit << BitsPerUInt32) && firstNonZeroLimb == bits.Length - 1);