5 references to Round
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
2991
public static Vector128<double> Round(Vector128<double> vector) =>
Round
<double>(vector);
2995
public static Vector128<float> Round(Vector128<float> vector) =>
Round
<float>(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.cs (2)
3018
Vector128.
Round
(vector._lower),
3019
Vector128.
Round
(vector._upper)