src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (13)
1999return Vector128<T>.Zero;
2023return Vector128<T>.Zero;
2037return Vector128<T>.Zero;
2041return LessThan(vector.AsInt32(), Vector128<int>.Zero).As<int, T>();
2045return LessThan(vector.AsInt64(), Vector128<long>.Zero).As<long, T>();
2049return LessThan(vector, Vector128<T>.Zero);
2066return Vector128<T>.Zero;
2116return GreaterThanOrEqual(vector.AsInt32(), Vector128<int>.Zero).As<int, T>();
2120return GreaterThanOrEqual(vector.AsInt64(), Vector128<long>.Zero).As<long, T>();
2124return GreaterThanOrEqual(vector, Vector128<T>.Zero);
2141return Vector128<T>.Zero;
2157return Vector128<T>.Zero;
2163public static Vector128<T> IsZero<T>(Vector128<T> vector) => Equals(vector, Vector128<T>.Zero);