5 references to EqualsAny
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
1548return Vector64.EqualsAny(left._lower, right._lower) 1549|| Vector64.EqualsAny(left._upper, right._upper);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (2)
135public static bool Any<T>(Vector64<T> vector, T value) => EqualsAny(vector, Create(value)); 2857public static bool None<T>(Vector64<T> vector, T value) => !EqualsAny(vector, Create(value));
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
657static bool ISimdVector<Vector64<T>, T>.EqualsAny(Vector64<T> left, Vector64<T> right) => Vector64.EqualsAny(left, right);