4 references to CopySign
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
636/// <inheritdoc cref="Vector64.CopySign{T}(Vector64{T}, Vector64{T})" /> 656Vector64.CopySign(value._lower, sign._lower), 657Vector64.CopySign(value._upper, sign._upper)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
595static Vector64<T> ISimdVector<Vector64<T>, T>.CopySign(Vector64<T> value, Vector64<T> sign) => Vector64.CopySign(value, sign);