8 references to All
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
166/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
399/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" /> 402public static bool All(Vector4 vector, float value) => Vector128.All(vector.AsVector128(), value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
494static bool ISimdVector<Vector128<T>, T>.All(Vector128<T> vector, T value) => Vector128.All(vector, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
215return All(vector.AsInt32(), -1); 219return All(vector.AsInt64(), -1); 223return All(vector, Scalar<T>.AllBitsSet);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
186/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" />