5 references to Round
System.Private.CoreLib (5)
src\runtime\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\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
3219public static Vector256<double> Round(Vector256<double> vector) => Round<double>(vector); 3223public static Vector256<float> Round(Vector256<float> vector) => Round<float>(vector);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
3233Vector256.Round(vector._lower), 3234Vector256.Round(vector._upper)