6 references to LastIndexOf
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1589return Vector256.LastIndexOf(vector.AsVector256(), value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
2175return LastIndexOf(vector.AsInt32(), -1); 2179return LastIndexOf(vector.AsInt64(), -1); 2183return LastIndexOf(vector, Scalar<T>.AllBitsSet);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
684static int ISimdVector<Vector256<T>, T>.LastIndexOf(Vector256<T> vector, T value) => Vector256.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
2190/// <inheritdoc cref="Vector256.LastIndexOf{T}(Vector256{T}, T)" />