Searched refs:copysign (Results 1 - 24 of 24) sorted by last modified time

/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs_legacy.c1497 void copysign() {} function
H A Dlibroot_stubs.c1559 void copysign() {} function
/haiku/headers/posix/
H A Dmath.h205 extern double copysign(double x, double y);
/haiku/src/system/libroot/posix/musl/math/riscv64/
H A Dcopysign.c5 double copysign(double x, double y) function
13 #include "../copysign.c"
/haiku/src/system/libroot/posix/musl/math/
H A Dcopysign.c3 double copysign(double x, double y) { function
H A Dcopysignl.c6 return copysign(x, y);
/haiku/src/system/libroot/posix/glibc/math/
H A Dk_casinh.c53 __real__ y = copysign (__imag__ y, __imag__ x);
76 __imag__ res = atan2 (rx, copysign (s, __imag__ x));
89 __imag__ res = atan2 (rx, copysign (s, __imag__ x));
106 __imag__ res = atan2 (rx + r1, copysign (ix + r2,
119 copysign (1.0, __imag__ x));
131 __imag__ res = atan2 (rx + s1, copysign (1.0 + s2,
167 copysign (ix + r2,
202 __real__ y = copysign (__imag__ y, __imag__ x);
210 __real__ res = copysign (__real__ res, __real__ x);
211 __imag__ res = copysign (__imag_
[all...]
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_ctanh.c37 __real__ res = copysign (1.0, __real__ x);
38 __imag__ res = copysign (0.0, __imag__ x);
H A Ds_ctan.c37 __real__ res = copysign (0.0, __real__ x);
38 __imag__ res = copysign (1.0, __imag__ x);
H A Ds_csqrt.c47 __imag__ res = copysign (HUGE_VAL, __imag__ x);
53 ? nan ("") : copysign (0.0, __imag__ x));
69 __imag__ res = copysign (sqrt (-__real__ x),
75 __imag__ res = copysign (0.0, __imag__ x);
82 __real__ res = copysign (r, __imag__ x);
104 __imag__ res = copysign (s, __imag__ x);
H A Ds_csinh.c61 __real__ retval = copysign (0.0, negate ? -1.0 : 1.0);
96 __real__ retval = copysign (HUGE_VAL, cosix);
97 __imag__ retval = copysign (HUGE_VAL, sinix);
H A Ds_csin.c86 __real__ retval = copysign (0.0, negate ? -1.0 : 1.0);
96 __real__ retval = copysign (HUGE_VAL, sinix);
97 __imag__ retval = copysign (HUGE_VAL, cosix);
119 __real__ retval = copysign (0.0, negate ? -1.0 : 1.0);
H A Ds_cproj.c35 __imag__ res = copysign (0.0, __imag__ x);
H A Ds_clog10.c38 __imag__ result = copysign (__imag__ result, __imag__ x);
H A Ds_clog.c38 __imag__ result = copysign (__imag__ result, __imag__ x);
H A Ds_cexp.c53 __real__ retval = copysign (exp_val, cosix);
54 __imag__ retval = copysign (exp_val, sinix);
89 __real__ retval = copysign (value, cosix);
90 __imag__ retval = copysign (value, sinix);
106 __imag__ retval = copysign (0.0, __imag__ x);
H A Ds_ccosh.c68 __imag__ retval = __imag__ x * copysign (1.0, __real__ x);
77 __real__ retval = copysign (HUGE_VAL, cosix);
78 __imag__ retval = (copysign (HUGE_VAL, sinix)
79 * copysign (1.0, __real__ x));
H A Ds_catanh.c38 __real__ res = copysign (0.0, __real__ x);
39 __imag__ res = copysign (M_PI_2, __imag__ x);
43 __real__ res = copysign (0.0, __real__ x);
45 __imag__ res = copysign (M_PI_2, __imag__ x);
H A Ds_catan.c38 __real__ res = copysign (M_PI_2, __real__ x);
39 __imag__ res = copysign (0.0, __imag__ x);
44 __real__ res = copysign (M_PI_2, __real__ x);
47 __imag__ res = copysign (0.0, __imag__ x);
52 __imag__ res = copysign (0.0, __imag__ x);
H A Ds_casinh.c36 __real__ res = copysign (HUGE_VAL, __real__ x);
41 __imag__ res = copysign (rcls >= FP_ZERO ? M_PI_2 : M_PI_4,
49 __imag__ res = copysign (0.0, __imag__ x);
H A Ds_casin.c39 __imag__ res = copysign (HUGE_VAL, __imag__ x);
H A Ds_cacosh.c41 __imag__ res = copysign ((rcls == FP_INFINITE
51 __imag__ res = copysign (signbit (__real__ x) ? M_PI : 0.0,
65 __imag__ res = copysign (M_PI_2, __imag__ x);
/haiku/src/tests/system/libroot/posix/math/
H A Dmath_test.cpp40 assert(get_image_symbol(libroot, "copysign", B_SYMBOL_TYPE_TEXT, (void**)&be_copysign) == B_OK);
91 // test copysign
96 double x = copysign(f, g);
/haiku/src/system/libroot/posix/glibc/math/bits/
H A Dmathcalls.h202 __MATHCALLX (copysign,, (_Mdouble_ __x, _Mdouble_ __y), (__const__));

Completed in 86 milliseconds