8 references to All
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
65/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
373/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" /> 376public static bool All(Vector4 vector, float value) => Vector128.All(vector.AsVector128(), value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
99return All(vector.AsInt32(), -1); 103return All(vector.AsInt64(), -1); 107return All(vector, Scalar<T>.AllBitsSet);
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\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
91/// <inheritdoc cref="Vector128.All{T}(Vector128{T}, T)" />