5 references to Round
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
2952public static Vector256<double> Round(Vector256<double> vector) => Round<double>(vector); 2956public static Vector256<float> Round(Vector256<float> vector) => Round<float>(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
804static Vector256<T> ISimdVector<Vector256<T>, T>.Round(Vector256<T> vector) => Vector256.Round(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
2969Vector256.Round(vector._lower), 2970Vector256.Round(vector._upper)