5 references to LastIndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
2082
/// <inheritdoc cref="Vector64.
LastIndexOf
{T}(Vector64{T}, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (3)
2032
return
LastIndexOf
(vector.AsInt32(), -1);
2036
return
LastIndexOf
(vector.AsInt64(), -1);
2040
return
LastIndexOf
(vector, Scalar<T>.AllBitsSet);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
753
static int ISimdVector<Vector64<T>, T>.LastIndexOf(Vector64<T> vector, T value) => Vector64.
LastIndexOf
(vector, value);