6 references to Round
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2574/// <inheritdoc cref="Vector128.Round(Vector128{float}, MidpointRounding)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
854public static Vector2 Round(Vector2 vector, MidpointRounding mode) => Vector128.Round(vector.AsVector128Unsafe(), mode).AsVector2();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (1)
887public static Vector3 Round(Vector3 vector, MidpointRounding mode) => Vector128.Round(vector.AsVector128Unsafe(), mode).AsVector3();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
917/// <inheritdoc cref="Vector128.Round(Vector128{float}, MidpointRounding)" /> 919public static Vector4 Round(Vector4 vector, MidpointRounding mode) => Vector128.Round(vector.AsVector128(), mode).AsVector4();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
2958/// <inheritdoc cref="Vector128.Round(Vector128{float}, MidpointRounding)" />