15 references to MinValue
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2149
(value <= Zero) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1832
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1218
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1284
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1280
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
1276
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1764
(value <= 0.0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1181
UInt128 actualResult = (value <= 0) ? UInt128.
MinValue
: (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
514
return
MinValue
;
572
return
MinValue
;
1669
result = (actualValue < 0) ?
MinValue
: (UInt128)actualValue;
1735
result = (actualValue < 0) ?
MinValue
: (UInt128)actualValue;
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4858
IsNegative(value) ? UInt128.
MinValue
: (UInt128)value;
System\Numerics\Complex.cs (2)
1935
(value.m_real <= 0.0) ? UInt128.
MinValue
: (UInt128)value.m_real;
2071
(value.m_real <= 0.0) ? UInt128.
MinValue
: (UInt128)value.m_real;