src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
351return Zero - vector;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (14)
2320return Vector512<T>.Zero;
2344return Vector512<T>.Zero;
2354return Vector512<T>.Zero;
2358return LessThan(vector.AsInt32(), Vector512<int>.Zero).As<int, T>();
2362return LessThan(vector.AsInt64(), Vector512<long>.Zero).As<long, T>();
2366return LessThan(vector, Vector512<T>.Zero);
2383return Vector512<T>.Zero;
2429return GreaterThanOrEqual(vector.AsInt32(), Vector512<int>.Zero).As<int, T>();
2433return GreaterThanOrEqual(vector.AsInt64(), Vector512<long>.Zero).As<long, T>();
2437return GreaterThanOrEqual(vector, Vector512<T>.Zero);
2454return Vector512<T>.Zero;
2470return Vector512<T>.Zero;
2476public static Vector512<T> IsZero<T>(Vector512<T> vector) => Equals(vector, Vector512<T>.Zero);
3489Vector512<T> result = Vector512<T>.Zero;