Searched refs:MPC_MPFR_SIGN (Results 1 - 2 of 2) sorted by relevance

/haiku-buildtools/gcc/mpc/src/
H A Ddiv.c53 /* x = MPC_MPFR_SIGN (a * mpc_realref (w) + b * mpc_imagref (w)) */
54 /* y = MPC_MPFR_SIGN (b * mpc_realref (w) - a * mpc_imagref (w)) */
57 x = a * MPC_MPFR_SIGN (mpc_realref (w)) + b * MPC_MPFR_SIGN (mpc_imagref (w));
58 y = b * MPC_MPFR_SIGN (mpc_realref (w)) - a * MPC_MPFR_SIGN (mpc_imagref (w));
72 x = MPC_MPFR_SIGN (sign);
74 y = MPC_MPFR_SIGN (sign);
78 x = MPC_MPFR_SIGN (sign);
80 y = -MPC_MPFR_SIGN (sig
[all...]
H A Dmpc-impl.h56 #define MPC_MPFR_SIGN(x) (mpfr_zero_p (x) ? 0 : MPFR_SIGNBIT (x)) macro

Completed in 50 milliseconds