14 references to MinValue
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2161
(value <= Zero) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1822
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1215
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1266
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1262
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
1282
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1926
(value <= Zero) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1691
(value <= 0.0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1194
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
508
return
MinValue
;
566
return
MinValue
;
1702
result = (actualValue < 0) ?
MinValue
: (UInt128)actualValue;
1768
result = (actualValue < 0) ?
MinValue
: (UInt128)actualValue;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4942
IsNegative(value) ? UInt128.
MinValue
: (UInt128)value;