Lines Matching refs:mpd1
195 static int mpd1(struct t *p, int (*fmp)(mpfr_t, const mpfr_t, mpfr_rnd_t))
254 return mpd1(p, fmp);
350 int mpsinpi(struct t *t) { return mpd1(t, wrap_sinpi); }
362 int mpacos(struct t *t) { return mpd1(t, mpfr_acos); }
365 int mpacosh(struct t *t) { return mpd1(t, mpfr_acosh); }
368 int mpasin(struct t *t) { return mpd1(t, mpfr_asin); }
371 int mpasinh(struct t *t) { return mpd1(t, mpfr_asinh); }
374 int mpatan(struct t *t) { return mpd1(t, mpfr_atan); }
380 int mpatanh(struct t *t) { return mpd1(t, mpfr_atanh); }
383 int mpcbrt(struct t *t) { return mpd1(t, mpfr_cbrt); }
386 int mpceil(struct t *t) { return mpd1(t, wrap_ceil); }
392 int mpcos(struct t *t) { return mpd1(t, mpfr_cos); }
395 int mpcosh(struct t *t) { return mpd1(t, mpfr_cosh); }
398 int mperf(struct t *t) { return mpd1(t, mpfr_erf); }
401 int mperfc(struct t *t) { return mpd1(t, mpfr_erfc); }
404 int mpexp(struct t *t) { return mpd1(t, mpfr_exp); }
407 int mpexp2(struct t *t) { return mpd1(t, mpfr_exp2); }
410 int mpexpm1(struct t *t) { return mpd1(t, mpfr_expm1); }
413 int mpfabs(struct t *t) { return mpd1(t, mpfr_abs); }
419 int mpfloor(struct t *t) { return mpd1(t, wrap_floor); }
434 int mplgamma(struct t *t) { return mpd1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); }
437 int mplog(struct t *t) { return mpd1(t, mpfr_log); }
440 int mplog10(struct t *t) { return mpd1(t, mpfr_log10); }
443 int mplog1p(struct t *t) { return mpd1(t, mpfr_log1p); }
446 int mplog2(struct t *t) { return mpd1(t, mpfr_log2); }
518 int mpnearbyint(struct t *t) { return mpd1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); }
569 int mprint(struct t *t) { return mpd1(t, mpfr_rint); }
572 int mpround(struct t *t) { return mpd1(t, wrap_round); }
575 int mpsin(struct t *t) { return mpd1(t, mpfr_sin); }
578 int mpsinh(struct t *t) { return mpd1(t, mpfr_sinh); }
581 int mpsqrt(struct t *t) { return mpd1(t, mpfr_sqrt); }
584 int mptan(struct t *t) { return mpd1(t, mpfr_tan); }
587 int mptanh(struct t *t) { return mpd1(t, mpfr_tanh); }
591 int mptgamma(struct t *t) { return mpd1(t, mpfr_gamma); }
594 int mptrunc(struct t *t) { return mpd1(t, wrap_trunc); }
597 int mpj0(struct t *t) { return mpd1(t, mpfr_j0); }
598 int mpj1(struct t *t) { return mpd1(t, mpfr_j1); }
599 int mpy0(struct t *t) { return mpd1(t, mpfr_y0); }
600 int mpy1(struct t *t) { return mpd1(t, mpfr_y1); }
626 int mpexp10(struct t *t) { return mpd1(t, wrap_pow10); }
629 int mppow10(struct t *t) { return mpd1(t, wrap_pow10); }
806 r = mpd1(t, wrap_trunc);
812 r = mpd1(t, mpfr_frac);
851 r = mpd1(t, mpfr_cos);
857 r = mpd1(t, mpfr_sin);
956 int mpjn(struct t *t) { mpbessel_n = t->i; return mpd1(t, wrap_jn); }
959 int mpyn(struct t *t) { mpbessel_n = t->i; return mpd1(t, wrap_yn); }