9 references to LastIndexOf
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
1578/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" /> 1594return Vector128.LastIndexOf(vector.AsVector128(), value);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
716/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" /> 719public static int LastIndexOf(Vector4 vector, float value) => Vector128.LastIndexOf(vector.AsVector128(), value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
2071return LastIndexOf(vector.AsInt32(), -1); 2075return LastIndexOf(vector.AsInt64(), -1); 2079return LastIndexOf(vector, Scalar<T>.AllBitsSet);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
696static int ISimdVector<Vector128<T>, T>.LastIndexOf(Vector128<T> vector, T value) => Vector128.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
2163/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" />