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