5 implementations of Divide
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
933static Vector<T> ISimdVector<Vector<T>, T>.Divide(Vector<T> left, T right) => left / right;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
584static Vector128<T> ISimdVector<Vector128<T>, T>.Divide(Vector128<T> left, T right) => left / right;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
573static Vector256<T> ISimdVector<Vector256<T>, T>.Divide(Vector256<T> left, T right) => left / right;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
573static Vector512<T> ISimdVector<Vector512<T>, T>.Divide(Vector512<T> left, T right) => left / right;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
641static Vector64<T> ISimdVector<Vector64<T>, T>.Divide(Vector64<T> left, T right) => left / right;
10 references to Divide
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (2)
927/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" /> 931/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (2)
578/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" /> 582/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (2)
567/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" /> 571/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (2)
567/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" /> 571/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (2)
635/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" /> 639/// <inheritdoc cref="ISimdVector{TSelf, T}.Divide(TSelf, T)" />