src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
353return Zero - vector;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (14)
2193return Vector128<T>.Zero;
2217return Vector128<T>.Zero;
2227return Vector128<T>.Zero;
2231return LessThan(vector.AsInt32(), Vector128<int>.Zero).As<int, T>();
2235return LessThan(vector.AsInt64(), Vector128<long>.Zero).As<long, T>();
2239return LessThan(vector, Vector128<T>.Zero);
2256return Vector128<T>.Zero;
2302return GreaterThanOrEqual(vector.AsInt32(), Vector128<int>.Zero).As<int, T>();
2306return GreaterThanOrEqual(vector.AsInt64(), Vector128<long>.Zero).As<long, T>();
2310return GreaterThanOrEqual(vector, Vector128<T>.Zero);
2327return Vector128<T>.Zero;
2343return Vector128<T>.Zero;
2349public static Vector128<T> IsZero<T>(Vector128<T> vector) => Equals(vector, Vector128<T>.Zero);
3419Vector128<T> result = Vector128<T>.Zero;