16 references to Equals
System.Private.CoreLib (16)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
1813
Vector64.
Equals
(left._lower, right._lower),
1814
Vector64.
Equals
(left._upper, right._upper)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (4)
458
Vector64<T> result = Vector64.
Equals
(this, other) | ~(Vector64.
Equals
(this, this) | Vector64.
Equals
(other, other));
649
static Vector64<T> ISimdVector<Vector64<T>, T>.Equals(Vector64<T> left, Vector64<T> right) => Vector64.
Equals
(left, right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (10)
862
public static int Count<T>(Vector64<T> vector, T value) => CountMatches(
Equals
(vector, Create(value)));
2161
public static int IndexOf<T>(Vector64<T> vector, T value) => IndexOfFirstMatch(
Equals
(vector, Create(value)));
2237
return IsFinite(vector) &
Equals
(vector, Truncate(vector));
2249
return ~
Equals
(vector, vector);
2284
return
Equals
(vector, Vector64<float>.NegativeInfinity.As<float, T>());
2288
return
Equals
(vector, Vector64<double>.NegativeInfinity.As<double, T>());
2355
return
Equals
(vector, Vector64<float>.PositiveInfinity.As<float, T>());
2359
return
Equals
(vector, Vector64<double>.PositiveInfinity.As<double, T>());
2383
public static Vector64<T> IsZero<T>(Vector64<T> vector) =>
Equals
(vector, Vector64<T>.Zero);
2393
public static int LastIndexOf<T>(Vector64<T> vector, T value) => IndexOfLastMatch(
Equals
(vector, Create(value)));