Searched refs:MPFR_SIGNBIT (Results 1 - 3 of 3) sorted by relevance

/haiku-buildtools/gcc/mpc/src/
H A Dmpc-impl.h55 #define MPFR_SIGNBIT(x) (mpfr_signbit (x) ? -1 : 1) macro
56 #define MPC_MPFR_SIGN(x) (mpfr_zero_p (x) ? 0 : MPFR_SIGNBIT (x))
84 ((f) ? MPFR_ADD_ONE_ULP (rop), MPFR_SIGNBIT (rop) : 0)
H A Ddiv.c28 int sign = MPFR_SIGNBIT (mpc_realref (w));
47 a = (mpfr_inf_p (mpc_realref (z)) ? MPFR_SIGNBIT (mpc_realref (z)) : 0);
48 b = (mpfr_inf_p (mpc_imagref (z)) ? MPFR_SIGNBIT (mpc_imagref (z)) : 0);
163 int zrs = MPFR_SIGNBIT (mpc_realref (z));
164 int zis = MPFR_SIGNBIT (mpc_imagref (z));
165 int wrs = MPFR_SIGNBIT (mpc_realref (w));
166 int wis = MPFR_SIGNBIT (mpc_imagref (w));
197 int zrs = MPFR_SIGNBIT (mpc_realref (z));
198 int zis = MPFR_SIGNBIT (mpc_imagref (z));
199 int wrs = MPFR_SIGNBIT (mpc_realre
[all...]
H A Dmul.c119 xrs = MPFR_SIGNBIT (mpc_realref (x));
120 xis = MPFR_SIGNBIT (mpc_imagref (x));
121 yrs = MPFR_SIGNBIT (mpc_realref (y));
122 yis = MPFR_SIGNBIT (mpc_imagref (y));
152 sign = (MPFR_SIGNBIT (mpc_realref (y)) != MPFR_SIGNBIT (mpc_imagref (x)))
153 && (MPFR_SIGNBIT (mpc_imagref (y)) != MPFR_SIGNBIT (mpc_realref (x)));

Completed in 70 milliseconds