4 references to All
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
832static bool ISimdVector<Vector<T>, T>.All(Vector<T> vector, T value) => Vector.All(vector, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (3)
178return All(vector.As<T, int>(), -1); 182return All(vector.As<T, long>(), -1); 186return All(vector, Scalar<T>.AllBitsSet);