5 references to Round
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
2904public static Vector128<double> Round(Vector128<double> vector) => Round<double>(vector); 2908public static Vector128<float> Round(Vector128<float> vector) => Round<float>(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
816static 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)
2940Vector128.Round(vector._lower), 2941Vector128.Round(vector._upper)