12 references to EqualsAny
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IBooleanUnaryOperator.cs (3)
79typeof(T) == typeof(float) ? Vector512.EqualsAny(result.AsUInt32(), Vector512<uint>.Zero) : 80typeof(T) == typeof(double) ? Vector512.EqualsAny(result.AsUInt64(), Vector512<ulong>.Zero) : 81Vector512.EqualsAny(result, Vector512<T>.Zero);
System\Numerics\Tensors\netcore\TensorPrimitives.Sign.cs (1)
106if (Vector512.EqualsAny(IsNaN(x).AsInt32(), Vector512<int>.AllBitsSet))
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
128public static bool Any<T>(Vector512<T> vector, T value) => EqualsAny(vector, Create(value));
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
589static bool ISimdVector<Vector512<T>, T>.EqualsAny(Vector512<T> left, Vector512<T> right) => Vector512.EqualsAny(left, right);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.Char.cs (1)
654if (!Vector512.EqualsAny(search, Vector512<ushort>.Zero))
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.Packed.cs (3)
168if (Vector512.EqualsAny(packedValue, packedSource)) 191if (Vector512.EqualsAny(packedValue, packedSource)) 1202? Vector512.EqualsAny(left, right) : !Vector512.EqualsAll(left, right);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.T.cs (2)
1398if (Vector512.EqualsAny(values, current)) 1412if (Vector512.EqualsAny(values, current))