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