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