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)
1822UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1215UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1266UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1262UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
1282UInt128 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)
1194UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
508return MinValue; 566return MinValue; 1702result = (actualValue < 0) ? MinValue : (UInt128)actualValue; 1768result = (actualValue < 0) ? MinValue : (UInt128)actualValue;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4942IsNegative(value) ? UInt128.MinValue : (UInt128)value;