Lines Matching defs:mpl1

251 static int mpl1(struct t *p, int (*fmp)(mpfr_t, const mpfr_t, mpfr_rnd_t))
364 int mpacosl(struct t *t) { return mpl1(t, mpfr_acos); }
367 int mpacoshl(struct t *t) { return mpl1(t, mpfr_acosh); }
370 int mpasinl(struct t *t) { return mpl1(t, mpfr_asin); }
373 int mpasinhl(struct t *t) { return mpl1(t, mpfr_asinh); }
376 int mpatanl(struct t *t) { return mpl1(t, mpfr_atan); }
382 int mpatanhl(struct t *t) { return mpl1(t, mpfr_atanh); }
385 int mpcbrtl(struct t *t) { return mpl1(t, mpfr_cbrt); }
388 int mpceill(struct t *t) { return mpl1(t, wrap_ceil); }
394 int mpcosl(struct t *t) { return mpl1(t, mpfr_cos); }
397 int mpcoshl(struct t *t) { return mpl1(t, mpfr_cosh); }
400 int mperfl(struct t *t) { return mpl1(t, mpfr_erf); }
403 int mperfcl(struct t *t) { return mpl1(t, mpfr_erfc); }
406 int mpexpl(struct t *t) { return mpl1(t, mpfr_exp); }
409 int mpexp2l(struct t *t) { return mpl1(t, mpfr_exp2); }
412 int mpexpm1l(struct t *t) { return mpl1(t, mpfr_expm1); }
415 int mpfabsl(struct t *t) { return mpl1(t, mpfr_abs); }
421 int mpfloorl(struct t *t) { return mpl1(t, wrap_floor); }
436 int mplgammal(struct t *t) { return mpl1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); }
439 int mplogl(struct t *t) { return mpl1(t, mpfr_log); }
442 int mplog10l(struct t *t) { return mpl1(t, mpfr_log10); }
445 int mplog1pl(struct t *t) { return mpl1(t, mpfr_log1p); }
448 int mplog2l(struct t *t) { return mpl1(t, mpfr_log2); }
520 int mpnearbyintl(struct t *t) { return mpl1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); }
571 int mprintl(struct t *t) { return mpl1(t, mpfr_rint); }
574 int mproundl(struct t *t) { return mpl1(t, wrap_round); }
577 int mpsinl(struct t *t) { return mpl1(t, mpfr_sin); }
580 int mpsinhl(struct t *t) { return mpl1(t, mpfr_sinh); }
583 int mpsqrtl(struct t *t) { return mpl1(t, mpfr_sqrt); }
586 int mptanl(struct t *t) { return mpl1(t, mpfr_tan); }
589 int mptanhl(struct t *t) { return mpl1(t, mpfr_tanh); }
593 int mptgammal(struct t *t) { return mpl1(t, mpfr_gamma); }
596 int mptruncl(struct t *t) { return mpl1(t, wrap_trunc); }
619 int mpj0l(struct t *t) { return mpl1(t, mpfr_j0); }
621 int mpj1l(struct t *t) { return mpl1(t, mpfr_j1); }
623 int mpy0l(struct t *t) { return mpl1(t, mpfr_y0); }
625 int mpy1l(struct t *t) { return mpl1(t, mpfr_y1); }
628 int mpexp10l(struct t *t) { return mpl1(t, wrap_pow10); }
631 int mppow10l(struct t *t) { return mpl1(t, wrap_pow10); }
836 r = mpl1(t, wrap_trunc);
842 r = mpl1(t, mpfr_frac);
881 r = mpl1(t, mpfr_cos);
887 r = mpl1(t, mpfr_sin);
958 int mpjnl(struct t *t) { mpbessel_n = t->i; return mpl1(t, wrap_jn); }
961 int mpynl(struct t *t) { mpbessel_n = t->i; return mpl1(t, wrap_yn); }