13 references to MinValue
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (2)
1752(value <= nint.MinValue) ? nint.MinValue : (nint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
631static nint IMinMaxValue<nint>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
87/// <param name="value">A number that is greater than <see cref="IntPtr.MinValue" />, but less than or equal to <see cref="IntPtr.MaxValue" />.</param>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (2)
1876((float)value <= nint.MinValue) ? nint.MinValue : (nint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (2)
1649(value <= nint.MinValue) ? nint.MinValue : (nint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (2)
400result = (result < 0) ? nint.MaxValue : nint.MinValue; 1890result = (result < 0) ? nint.MaxValue : nint.MinValue;
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (3)
4875(value <= nint.MinValue) ? nint.MinValue : (nint)value; 5469return new BigInteger(nint.MinValue >>> smallShift);