10 references to CopySign
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.CopySign.cs (1)
51return Vector128.CopySign(x, y);
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
642/// <inheritdoc cref="Vector128.CopySign{T}(Vector128{T}, Vector128{T})" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
371public static Vector2 CopySign(Vector2 value, Vector2 sign) => Vector128.CopySign(value.AsVector128Unsafe(), sign.AsVector128Unsafe()).AsVector2();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (1)
392public static Vector3 CopySign(Vector3 value, Vector3 sign) => Vector128.CopySign(value.AsVector128Unsafe(), sign.AsVector128Unsafe()).AsVector3();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
421/// <inheritdoc cref="Vector128.CopySign{T}(Vector128{T}, Vector128{T})" /> 424public static Vector4 CopySign(Vector4 value, Vector4 sign) => Vector128.CopySign(value.AsVector128(), sign.AsVector128()).AsVector4();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
538static Vector128<T> ISimdVector<Vector128<T>, T>.CopySign(Vector128<T> value, Vector128<T> sign) => Vector128.CopySign(value, sign);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
640/// <inheritdoc cref="Vector128.CopySign{T}(Vector128{T}, Vector128{T})" /> 660Vector128.CopySign(value._lower, sign._lower), 661Vector128.CopySign(value._upper, sign._upper)