5 references to CopySign
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.CopySign.cs (1)
83return Vector256.CopySign(x, y);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
527static Vector256<T> ISimdVector<Vector256<T>, T>.CopySign(Vector256<T> value, Vector256<T> sign) => Vector256.CopySign(value, sign);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (3)
554/// <inheritdoc cref="Vector256.CopySign{T}(Vector256{T}, Vector256{T})" /> 574Vector256.CopySign(value._lower, sign._lower), 575Vector256.CopySign(value._upper, sign._upper)