5 references to MinValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
486return MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1869((float)value <= -170141183460469231731687303715884105728.0f) ? Int128.MinValue : (Int128)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1642(value <= -170141183460469231731687303715884105728.0) ? Int128.MinValue : (Int128)value;
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (2)
4868(value <= Int128.MinValue) ? Int128.MinValue : (Int128)value;