Lines Matching defs:mpf2
156 static int mpf2(struct t *p, int (*fmp)(mpfr_t, const mpfr_t, const mpfr_t, mpfr_rnd_t))
353 int mpaddf(struct t *t) { return mpf2(t, mpfr_add); }
356 int mpmulf(struct t *t) { return mpf2(t, mpfr_mul); }
359 int mpdivf(struct t *t) { return mpf2(t, mpfr_div); }
378 int mpatan2f(struct t *t) { return mpf2(t, mpfr_atan2); }
390 int mpcopysignf(struct t *t) { return mpf2(t, mpfr_copysign); }
417 int mpfdimf(struct t *t) { return mpf2(t, mpfr_dim); }
423 int mpfmaxf(struct t *t) { return mpf2(t, mpfr_max); }
426 int mpfminf(struct t *t) { return mpf2(t, mpfr_min); }
429 int mpfmodf(struct t *t) { return mpf2(t, mpfr_fmod); }
432 int mphypotf(struct t *t) { return mpf2(t, mpfr_hypot); }
564 int mppowf(struct t *t) { return mpf2(t, mpfr_pow); }
567 int mpremainderf(struct t *t) { return mpf2(t, mpfr_remainder); }
893 int mpremquof(struct t *t) { return mpf2(t, wrap_remquo) || (t->i = mpremquo_q, 0); }