5 references to Round
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
2900Vector64.Round(vector._lower), 2901Vector64.Round(vector._upper)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (2)
2971public static Vector64<double> Round(Vector64<double> vector) => Round<double>(vector); 2975public static Vector64<float> Round(Vector64<float> vector) => Round<float>(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
873static Vector64<T> ISimdVector<Vector64<T>, T>.Round(Vector64<T> vector) => Vector64.Round(vector);