9 references to LastIndexOf
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
1934/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" /> 1950return Vector128.LastIndexOf(vector.AsVector128(), value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
759/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" /> 762public static int LastIndexOf(Vector4 vector, float value) => Vector128.LastIndexOf(vector.AsVector128(), value);
src\runtime\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\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
2363return LastIndexOf(vector.AsInt32(), -1); 2367return LastIndexOf(vector.AsInt64(), -1); 2371return LastIndexOf(vector, Scalar<T>.AllBitsSet);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
2443/// <inheritdoc cref="Vector128.LastIndexOf{T}(Vector128{T}, T)" />