5 references to CopySign
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.CopySign.cs (1)
83
return Vector256.
CopySign
(x, y);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
527
static 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})" />
574
Vector256.
CopySign
(value._lower, sign._lower),
575
Vector256.
CopySign
(value._upper, sign._upper)