5 references to IndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
1847/// <inheritdoc cref="Vector64.IndexOf{T}(Vector64{T}, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (3)
1792return IndexOf(vector.AsInt32(), -1); 1796return IndexOf(vector.AsInt64(), -1); 1800return IndexOf(vector, Scalar<T>.AllBitsSet);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
693static int ISimdVector<Vector64<T>, T>.IndexOf(Vector64<T> vector, T value) => Vector64.IndexOf(vector, value);