3 references to CountMatches
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
894public static int Count<T>(Vector256<T> vector, T value) => CountMatches(Equals(vector, Create(value)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
4229return Vector256.CountMatches(vector._lower) 4230+ Vector256.CountMatches(vector._upper);