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)
1832UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1218UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1284UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1280UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
1276UInt128 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)
1181UInt128 actualResult = (value <= 0) ? UInt128.MinValue : (UInt128)value;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
514return MinValue; 572return MinValue; 1669result = (actualValue < 0) ? MinValue : (UInt128)actualValue; 1735result = (actualValue < 0) ? MinValue : (UInt128)actualValue;
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4858IsNegative(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;