Lines Matching refs:mpf1

141 static int mpf1(struct t *p, int (*fmp)(mpfr_t, const mpfr_t, mpfr_rnd_t))
363 int mpacosf(struct t *t) { return mpf1(t, mpfr_acos); }
366 int mpacoshf(struct t *t) { return mpf1(t, mpfr_acosh); }
369 int mpasinf(struct t *t) { return mpf1(t, mpfr_asin); }
372 int mpasinhf(struct t *t) { return mpf1(t, mpfr_asinh); }
375 int mpatanf(struct t *t) { return mpf1(t, mpfr_atan); }
381 int mpatanhf(struct t *t) { return mpf1(t, mpfr_atanh); }
384 int mpcbrtf(struct t *t) { return mpf1(t, mpfr_cbrt); }
387 int mpceilf(struct t *t) { return mpf1(t, wrap_ceil); }
393 int mpcosf(struct t *t) { return mpf1(t, mpfr_cos); }
396 int mpcoshf(struct t *t) { return mpf1(t, mpfr_cosh); }
399 int mperff(struct t *t) { return mpf1(t, mpfr_erf); }
402 int mperfcf(struct t *t) { return mpf1(t, mpfr_erfc); }
405 int mpexpf(struct t *t) { return mpf1(t, mpfr_exp); }
408 int mpexp2f(struct t *t) { return mpf1(t, mpfr_exp2); }
411 int mpexpm1f(struct t *t) { return mpf1(t, mpfr_expm1); }
414 int mpfabsf(struct t *t) { return mpf1(t, mpfr_abs); }
420 int mpfloorf(struct t *t) { return mpf1(t, wrap_floor); }
435 int mplgammaf(struct t *t) { return mpf1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); }
438 int mplogf(struct t *t) { return mpf1(t, mpfr_log); }
441 int mplog10f(struct t *t) { return mpf1(t, mpfr_log10); }
444 int mplog1pf(struct t *t) { return mpf1(t, mpfr_log1p); }
447 int mplog2f(struct t *t) { return mpf1(t, mpfr_log2); }
519 int mpnearbyintf(struct t *t) { return mpf1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); }
570 int mprintf(struct t *t) { return mpf1(t, mpfr_rint); }
573 int mproundf(struct t *t) { return mpf1(t, wrap_round); }
576 int mpsinf(struct t *t) { return mpf1(t, mpfr_sin); }
579 int mpsinhf(struct t *t) { return mpf1(t, mpfr_sinh); }
582 int mpsqrtf(struct t *t) { return mpf1(t, mpfr_sqrt); }
585 int mptanf(struct t *t) { return mpf1(t, mpfr_tan); }
588 int mptanhf(struct t *t) { return mpf1(t, mpfr_tanh); }
592 int mptgammaf(struct t *t) { return mpf1(t, mpfr_gamma); }
595 int mptruncf(struct t *t) { return mpf1(t, wrap_trunc); }
618 int mpj0f(struct t *t) { return mpf1(t, mpfr_j0); }
620 int mpj1f(struct t *t) { return mpf1(t, mpfr_j1); }
622 int mpy0f(struct t *t) { return mpf1(t, mpfr_y0); }
624 int mpy1f(struct t *t) { return mpf1(t, mpfr_y1); }
627 int mpexp10f(struct t *t) { return mpf1(t, wrap_pow10); }
630 int mppow10f(struct t *t) { return mpf1(t, wrap_pow10); }
821 r = mpf1(t, wrap_trunc);
827 r = mpf1(t, mpfr_frac);
866 r = mpf1(t, mpfr_cos);
872 r = mpf1(t, mpfr_sin);
957 int mpjnf(struct t *t) { mpbessel_n = t->i; return mpf1(t, wrap_jn); }
960 int mpynf(struct t *t) { mpbessel_n = t->i; return mpf1(t, wrap_yn); }