6 references to IndexOf
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1343return Vector256.IndexOf(vector.AsVector256(), value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
1944return IndexOf(vector.AsInt32(), -1); 1948return IndexOf(vector.AsInt64(), -1); 1952return IndexOf(vector, Scalar<T>.AllBitsSet);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
625static int ISimdVector<Vector256<T>, T>.IndexOf(Vector256<T> vector, T value) => Vector256.IndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
1955/// <inheritdoc cref="Vector256.IndexOf{T}(Vector256{T}, T)" />