7 references to MinValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
492return 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 (4)
System\Numerics\BigInteger.cs (2)
4676(value <= Int128.MinValue) ? Int128.MinValue : (Int128)value;
System\Numerics\Complex.cs (2)
1917(value.m_real <= -170141183460469231731687303715884105728.0) ? Int128.MinValue : (Int128)value.m_real; 2059(value.m_real <= -170141183460469231731687303715884105728.0) ? Int128.MinValue : (Int128)value.m_real;