4 references to IndexOf
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
974static int ISimdVector<Vector<T>, T>.IndexOf(Vector<T> vector, T value) => Vector.IndexOf(vector, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (3)
1723return IndexOf(vector.As<T, int>(), -1); 1727return IndexOf(vector.As<T, long>(), -1); 1731return IndexOf(vector, Scalar<T>.AllBitsSet);