5 implementations of Round
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1164
static Vector<T> ISimdVector<Vector<T>, T>.
Round
(Vector<T> vector) => Vector.Round(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
816
static Vector128<T> ISimdVector<Vector128<T>, T>.
Round
(Vector128<T> vector) => Vector128.Round(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
804
static Vector256<T> ISimdVector<Vector256<T>, T>.
Round
(Vector256<T> vector) => Vector256.Round(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
804
static Vector512<T> ISimdVector<Vector512<T>, T>.
Round
(Vector512<T> vector) => Vector512.Round(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
873
static Vector64<T> ISimdVector<Vector64<T>, T>.
Round
(Vector64<T> vector) => Vector64.Round(vector);
9 references to Round
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1162
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
814
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
802
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
802
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (2)
2969
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
2973
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
871
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Round
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
1710
return TVectorDouble.
Round
(vector);
1756
return TVectorSingle.
Round
(vector);