src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
351return Zero - vector;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (14)
2285return Vector256<T>.Zero;
2309return Vector256<T>.Zero;
2319return Vector256<T>.Zero;
2323return LessThan(vector.AsInt32(), Vector256<int>.Zero).As<int, T>();
2327return LessThan(vector.AsInt64(), Vector256<long>.Zero).As<long, T>();
2331return LessThan(vector, Vector256<T>.Zero);
2348return Vector256<T>.Zero;
2394return GreaterThanOrEqual(vector.AsInt32(), Vector256<int>.Zero).As<int, T>();
2398return GreaterThanOrEqual(vector.AsInt64(), Vector256<long>.Zero).As<long, T>();
2402return GreaterThanOrEqual(vector, Vector256<T>.Zero);
2419return Vector256<T>.Zero;
2435return Vector256<T>.Zero;
2441public static Vector256<T> IsZero<T>(Vector256<T> vector) => Equals(vector, Vector256<T>.Zero);
3462Vector256<T> result = Vector256<T>.Zero;