9 references to UInt32HighBit
System.Runtime.Numerics (9)
System\Numerics\BigInteger.cs (9)
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)