5 references to IndexOfLastMatch
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
2446
public static int LastIndexOf<T>(Vector256<T> vector, T value) =>
IndexOfLastMatch
(Equals(vector, Create(value)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
4273
int result = Vector256.
IndexOfLastMatch
(vector._upper);
4279
return Vector256.
IndexOfLastMatch
(vector._lower);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (2)
1333
public static int IndexOfLastMatch(Vector256<byte> result) => Vector256.
IndexOfLastMatch
(~Vector256.Equals(result, Vector256<byte>.Zero));
1370
public static int IndexOfLastMatch(Vector256<byte> result) => Vector256.
IndexOfLastMatch
(result);