5 references to Any
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
236/// <inheritdoc cref="Vector64.Any{T}(Vector64{T}, T)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
563static bool ISimdVector<Vector64<T>, T>.Any(Vector64<T> vector, T value) => Vector64.Any(vector, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (3)
232return Any(vector.AsInt32(), -1); 236return Any(vector.AsInt64(), -1); 240return Any(vector, Scalar<T>.AllBitsSet);