• Home
  • Raw
  • Download

Lines Matching defs:t

45 static int adjust_round(mpfr_t y, mpfr_t x, int t, int r)  in adjust_round()
71 static int adjust(mpfr_t mr, mpfr_t my, int t, int r, int type) in adjust()
118 static void genf(struct t *p, mpfr_t my, int t, int r) in genf()
172 static void gend(struct t *p, mpfr_t my, int t, int r) in gend()
227 static void genl(struct t *p, mpfr_t my, int t, int r) in genl()
350 int mpsinpi(struct t *t) { return mpd1(t, wrap_sinpi); } in mpsinpi()
352 int mpadd(struct t *t) { return mpd2(t, mpfr_add); } in mpadd()
353 int mpaddf(struct t *t) { return mpf2(t, mpfr_add); } in mpaddf()
354 int mpaddl(struct t *t) { return mpl2(t, mpfr_add); } in mpaddl()
355 int mpmul(struct t *t) { return mpd2(t, mpfr_mul); } in mpmul()
356 int mpmulf(struct t *t) { return mpf2(t, mpfr_mul); } in mpmulf()
357 int mpmull(struct t *t) { return mpl2(t, mpfr_mul); } in mpmull()
358 int mpdiv(struct t *t) { return mpd2(t, mpfr_div); } in mpdiv()
359 int mpdivf(struct t *t) { return mpf2(t, mpfr_div); } in mpdivf()
360 int mpdivl(struct t *t) { return mpl2(t, mpfr_div); } in mpdivl()
362 int mpacos(struct t *t) { return mpd1(t, mpfr_acos); } in mpacos()
363 int mpacosf(struct t *t) { return mpf1(t, mpfr_acos); } in mpacosf()
364 int mpacosl(struct t *t) { return mpl1(t, mpfr_acos); } in mpacosl()
365 int mpacosh(struct t *t) { return mpd1(t, mpfr_acosh); } in mpacosh()
366 int mpacoshf(struct t *t) { return mpf1(t, mpfr_acosh); } in mpacoshf()
367 int mpacoshl(struct t *t) { return mpl1(t, mpfr_acosh); } in mpacoshl()
368 int mpasin(struct t *t) { return mpd1(t, mpfr_asin); } in mpasin()
369 int mpasinf(struct t *t) { return mpf1(t, mpfr_asin); } in mpasinf()
370 int mpasinl(struct t *t) { return mpl1(t, mpfr_asin); } in mpasinl()
371 int mpasinh(struct t *t) { return mpd1(t, mpfr_asinh); } in mpasinh()
372 int mpasinhf(struct t *t) { return mpf1(t, mpfr_asinh); } in mpasinhf()
373 int mpasinhl(struct t *t) { return mpl1(t, mpfr_asinh); } in mpasinhl()
374 int mpatan(struct t *t) { return mpd1(t, mpfr_atan); } in mpatan()
375 int mpatanf(struct t *t) { return mpf1(t, mpfr_atan); } in mpatanf()
376 int mpatanl(struct t *t) { return mpl1(t, mpfr_atan); } in mpatanl()
377 int mpatan2(struct t *t) { return mpd2(t, mpfr_atan2); } in mpatan2()
378 int mpatan2f(struct t *t) { return mpf2(t, mpfr_atan2); } in mpatan2f()
379 int mpatan2l(struct t *t) { return mpl2(t, mpfr_atan2); } in mpatan2l()
380 int mpatanh(struct t *t) { return mpd1(t, mpfr_atanh); } in mpatanh()
381 int mpatanhf(struct t *t) { return mpf1(t, mpfr_atanh); } in mpatanhf()
382 int mpatanhl(struct t *t) { return mpl1(t, mpfr_atanh); } in mpatanhl()
383 int mpcbrt(struct t *t) { return mpd1(t, mpfr_cbrt); } in mpcbrt()
384 int mpcbrtf(struct t *t) { return mpf1(t, mpfr_cbrt); } in mpcbrtf()
385 int mpcbrtl(struct t *t) { return mpl1(t, mpfr_cbrt); } in mpcbrtl()
386 int mpceil(struct t *t) { return mpd1(t, wrap_ceil); } in mpceil()
387 int mpceilf(struct t *t) { return mpf1(t, wrap_ceil); } in mpceilf()
388 int mpceill(struct t *t) { return mpl1(t, wrap_ceil); } in mpceill()
389 int mpcopysign(struct t *t) { return mpd2(t, mpfr_copysign); } in mpcopysign()
390 int mpcopysignf(struct t *t) { return mpf2(t, mpfr_copysign); } in mpcopysignf()
391 int mpcopysignl(struct t *t) { return mpl2(t, mpfr_copysign); } in mpcopysignl()
392 int mpcos(struct t *t) { return mpd1(t, mpfr_cos); } in mpcos()
393 int mpcosf(struct t *t) { return mpf1(t, mpfr_cos); } in mpcosf()
394 int mpcosl(struct t *t) { return mpl1(t, mpfr_cos); } in mpcosl()
395 int mpcosh(struct t *t) { return mpd1(t, mpfr_cosh); } in mpcosh()
396 int mpcoshf(struct t *t) { return mpf1(t, mpfr_cosh); } in mpcoshf()
397 int mpcoshl(struct t *t) { return mpl1(t, mpfr_cosh); } in mpcoshl()
398 int mperf(struct t *t) { return mpd1(t, mpfr_erf); } in mperf()
399 int mperff(struct t *t) { return mpf1(t, mpfr_erf); } in mperff()
400 int mperfl(struct t *t) { return mpl1(t, mpfr_erf); } in mperfl()
401 int mperfc(struct t *t) { return mpd1(t, mpfr_erfc); } in mperfc()
402 int mperfcf(struct t *t) { return mpf1(t, mpfr_erfc); } in mperfcf()
403 int mperfcl(struct t *t) { return mpl1(t, mpfr_erfc); } in mperfcl()
404 int mpexp(struct t *t) { return mpd1(t, mpfr_exp); } in mpexp()
405 int mpexpf(struct t *t) { return mpf1(t, mpfr_exp); } in mpexpf()
406 int mpexpl(struct t *t) { return mpl1(t, mpfr_exp); } in mpexpl()
407 int mpexp2(struct t *t) { return mpd1(t, mpfr_exp2); } in mpexp2()
408 int mpexp2f(struct t *t) { return mpf1(t, mpfr_exp2); } in mpexp2f()
409 int mpexp2l(struct t *t) { return mpl1(t, mpfr_exp2); } in mpexp2l()
410 int mpexpm1(struct t *t) { return mpd1(t, mpfr_expm1); } in mpexpm1()
411 int mpexpm1f(struct t *t) { return mpf1(t, mpfr_expm1); } in mpexpm1f()
412 int mpexpm1l(struct t *t) { return mpl1(t, mpfr_expm1); } in mpexpm1l()
413 int mpfabs(struct t *t) { return mpd1(t, mpfr_abs); } in mpfabs()
414 int mpfabsf(struct t *t) { return mpf1(t, mpfr_abs); } in mpfabsf()
415 int mpfabsl(struct t *t) { return mpl1(t, mpfr_abs); } in mpfabsl()
416 int mpfdim(struct t *t) { return mpd2(t, mpfr_dim); } in mpfdim()
417 int mpfdimf(struct t *t) { return mpf2(t, mpfr_dim); } in mpfdimf()
418 int mpfdiml(struct t *t) { return mpl2(t, mpfr_dim); } in mpfdiml()
419 int mpfloor(struct t *t) { return mpd1(t, wrap_floor); } in mpfloor()
420 int mpfloorf(struct t *t) { return mpf1(t, wrap_floor); } in mpfloorf()
421 int mpfloorl(struct t *t) { return mpl1(t, wrap_floor); } in mpfloorl()
422 int mpfmax(struct t *t) { return mpd2(t, mpfr_max); } in mpfmax()
423 int mpfmaxf(struct t *t) { return mpf2(t, mpfr_max); } in mpfmaxf()
424 int mpfmaxl(struct t *t) { return mpl2(t, mpfr_max); } in mpfmaxl()
425 int mpfmin(struct t *t) { return mpd2(t, mpfr_min); } in mpfmin()
426 int mpfminf(struct t *t) { return mpf2(t, mpfr_min); } in mpfminf()
427 int mpfminl(struct t *t) { return mpl2(t, mpfr_min); } in mpfminl()
428 int mpfmod(struct t *t) { return mpd2(t, mpfr_fmod); } in mpfmod()
429 int mpfmodf(struct t *t) { return mpf2(t, mpfr_fmod); } in mpfmodf()
430 int mpfmodl(struct t *t) { return mpl2(t, mpfr_fmod); } in mpfmodl()
431 int mphypot(struct t *t) { return mpd2(t, mpfr_hypot); } in mphypot()
432 int mphypotf(struct t *t) { return mpf2(t, mpfr_hypot); } in mphypotf()
433 int mphypotl(struct t *t) { return mpl2(t, mpfr_hypot); } in mphypotl()
434 int mplgamma(struct t *t) { return mpd1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); } in mplgamma()
435 int mplgammaf(struct t *t) { return mpf1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); } in mplgammaf()
436 int mplgammal(struct t *t) { return mpl1(t, wrap_lgamma) || (t->i = mplgamma_sign, 0); } in mplgammal()
437 int mplog(struct t *t) { return mpd1(t, mpfr_log); } in mplog()
438 int mplogf(struct t *t) { return mpf1(t, mpfr_log); } in mplogf()
439 int mplogl(struct t *t) { return mpl1(t, mpfr_log); } in mplogl()
440 int mplog10(struct t *t) { return mpd1(t, mpfr_log10); } in mplog10()
441 int mplog10f(struct t *t) { return mpf1(t, mpfr_log10); } in mplog10f()
442 int mplog10l(struct t *t) { return mpl1(t, mpfr_log10); } in mplog10l()
443 int mplog1p(struct t *t) { return mpd1(t, mpfr_log1p); } in mplog1p()
444 int mplog1pf(struct t *t) { return mpf1(t, mpfr_log1p); } in mplog1pf()
445 int mplog1pl(struct t *t) { return mpl1(t, mpfr_log1p); } in mplog1pl()
446 int mplog2(struct t *t) { return mpd1(t, mpfr_log2); } in mplog2()
447 int mplog2f(struct t *t) { return mpf1(t, mpfr_log2); } in mplog2f()
448 int mplog2l(struct t *t) { return mpl1(t, mpfr_log2); } in mplog2l()
449 int mplogb(struct t *t) in mplogb()
472 int mplogbf(struct t *t) in mplogbf()
495 int mplogbl(struct t *t) in mplogbl()
518 int mpnearbyint(struct t *t) { return mpd1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); } in mpnearbyint()
519 int mpnearbyintf(struct t *t) { return mpf1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); } in mpnearbyintf()
520 int mpnearbyintl(struct t *t) { return mpl1(t, wrap_nearbyint) || (t->e&=~INEXACT, 0); } in mpnearbyintl()
522 int mpnextafter(struct t *t) in mpnextafter()
530 int mpnextafterf(struct t *t) in mpnextafterf()
538 int mpnextafterl(struct t *t) in mpnextafterl()
546 int mpnexttoward(struct t *t) in mpnexttoward()
554 int mpnexttowardf(struct t *t) in mpnexttowardf()
562 int mpnexttowardl(struct t *t) { return mpnextafterl(t); } in mpnexttowardl()
563 int mppow(struct t *t) { return mpd2(t, mpfr_pow); } in mppow()
564 int mppowf(struct t *t) { return mpf2(t, mpfr_pow); } in mppowf()
565 int mppowl(struct t *t) { return mpl2(t, mpfr_pow); } in mppowl()
566 int mpremainder(struct t *t) { return mpd2(t, mpfr_remainder); } in mpremainder()
567 int mpremainderf(struct t *t) { return mpf2(t, mpfr_remainder); } in mpremainderf()
568 int mpremainderl(struct t *t) { return mpl2(t, mpfr_remainder); } in mpremainderl()
569 int mprint(struct t *t) { return mpd1(t, mpfr_rint); } in mprint()
570 int mprintf(struct t *t) { return mpf1(t, mpfr_rint); } in mprintf()
571 int mprintl(struct t *t) { return mpl1(t, mpfr_rint); } in mprintl()
572 int mpround(struct t *t) { return mpd1(t, wrap_round); } in mpround()
573 int mproundf(struct t *t) { return mpf1(t, wrap_round); } in mproundf()
574 int mproundl(struct t *t) { return mpl1(t, wrap_round); } in mproundl()
575 int mpsin(struct t *t) { return mpd1(t, mpfr_sin); } in mpsin()
576 int mpsinf(struct t *t) { return mpf1(t, mpfr_sin); } in mpsinf()
577 int mpsinl(struct t *t) { return mpl1(t, mpfr_sin); } in mpsinl()
578 int mpsinh(struct t *t) { return mpd1(t, mpfr_sinh); } in mpsinh()
579 int mpsinhf(struct t *t) { return mpf1(t, mpfr_sinh); } in mpsinhf()
580 int mpsinhl(struct t *t) { return mpl1(t, mpfr_sinh); } in mpsinhl()
581 int mpsqrt(struct t *t) { return mpd1(t, mpfr_sqrt); } in mpsqrt()
582 int mpsqrtf(struct t *t) { return mpf1(t, mpfr_sqrt); } in mpsqrtf()
583 int mpsqrtl(struct t *t) { return mpl1(t, mpfr_sqrt); } in mpsqrtl()
584 int mptan(struct t *t) { return mpd1(t, mpfr_tan); } in mptan()
585 int mptanf(struct t *t) { return mpf1(t, mpfr_tan); } in mptanf()
586 int mptanl(struct t *t) { return mpl1(t, mpfr_tan); } in mptanl()
587 int mptanh(struct t *t) { return mpd1(t, mpfr_tanh); } in mptanh()
588 int mptanhf(struct t *t) { return mpf1(t, mpfr_tanh); } in mptanhf()
589 int mptanhl(struct t *t) { return mpl1(t, mpfr_tanh); } in mptanhl()
591 int mptgamma(struct t *t) { return mpd1(t, mpfr_gamma); } in mptgamma()
592 int mptgammaf(struct t *t) { return mpf1(t, mpfr_gamma); } in mptgammaf()
593 int mptgammal(struct t *t) { return mpl1(t, mpfr_gamma); } in mptgammal()
594 int mptrunc(struct t *t) { return mpd1(t, wrap_trunc); } in mptrunc()
595 int mptruncf(struct t *t) { return mpf1(t, wrap_trunc); } in mptruncf()
596 int mptruncl(struct t *t) { return mpl1(t, wrap_trunc); } in mptruncl()
597 int mpj0(struct t *t) { return mpd1(t, mpfr_j0); } in mpj0()
598 int mpj1(struct t *t) { return mpd1(t, mpfr_j1); } in mpj1()
599 int mpy0(struct t *t) { return mpd1(t, mpfr_y0); } in mpy0()
600 int mpy1(struct t *t) { return mpd1(t, mpfr_y1); } in mpy1()
602 int mpscalb(struct t *t) in mpscalb()
610 int mpscalbf(struct t *t) in mpscalbf()
618 int mpj0f(struct t *t) { return mpf1(t, mpfr_j0); } in mpj0f()
619 int mpj0l(struct t *t) { return mpl1(t, mpfr_j0); } in mpj0l()
620 int mpj1f(struct t *t) { return mpf1(t, mpfr_j1); } in mpj1f()
621 int mpj1l(struct t *t) { return mpl1(t, mpfr_j1); } in mpj1l()
622 int mpy0f(struct t *t) { return mpf1(t, mpfr_y0); } in mpy0f()
623 int mpy0l(struct t *t) { return mpl1(t, mpfr_y0); } in mpy0l()
624 int mpy1f(struct t *t) { return mpf1(t, mpfr_y1); } in mpy1f()
625 int mpy1l(struct t *t) { return mpl1(t, mpfr_y1); } in mpy1l()
626 int mpexp10(struct t *t) { return mpd1(t, wrap_pow10); } in mpexp10()
627 int mpexp10f(struct t *t) { return mpf1(t, wrap_pow10); } in mpexp10f()
628 int mpexp10l(struct t *t) { return mpl1(t, wrap_pow10); } in mpexp10l()
629 int mppow10(struct t *t) { return mpd1(t, wrap_pow10); } in mppow10()
630 int mppow10f(struct t *t) { return mpf1(t, wrap_pow10); } in mppow10f()
631 int mppow10l(struct t *t) { return mpl1(t, wrap_pow10); } in mppow10l()
633 int mpfrexp(struct t *t) in mpfrexp()
650 int mpfrexpf(struct t *t) in mpfrexpf()
667 int mpfrexpl(struct t *t) in mpfrexpl()
684 int mpldexp(struct t *t) in mpldexp()
700 int mpldexpf(struct t *t) in mpldexpf()
716 int mpldexpl(struct t *t) in mpldexpl()
732 int mpscalbn(struct t *t) { return mpldexp(t); } in mpscalbn()
733 int mpscalbnf(struct t *t) { return mpldexpf(t); } in mpscalbnf()
734 int mpscalbnl(struct t *t) { return mpldexpl(t); } in mpscalbnl()
735 int mpscalbln(struct t *t) { return mpldexp(t); } in mpscalbln()
736 int mpscalblnf(struct t *t) { return mpldexpf(t); } in mpscalblnf()
737 int mpscalblnl(struct t *t) { return mpldexpl(t); } in mpscalblnl()
739 int mplgamma_r(struct t *t) { return mplgamma(t); } in mplgamma_r()
740 int mplgammaf_r(struct t *t) { return mplgammaf(t); } in mplgammaf_r()
741 int mplgammal_r(struct t *t) { return mplgammal(t); } in mplgammal_r()
743 int mpilogb(struct t *t) in mpilogb()
754 int mpilogbf(struct t *t) in mpilogbf()
765 int mpilogbl(struct t *t) in mpilogbl()
817 int mpmodff(struct t *t) in mpmodff()
832 int mpmodfl(struct t *t) in mpmodfl()
847 int mpsincos(struct t *t) in mpsincos()
862 int mpsincosf(struct t *t) in mpsincosf()
877 int mpsincosl(struct t *t) in mpsincosl()
892 int mpremquo(struct t *t) { return mpd2(t, wrap_remquo) || (t->i = mpremquo_q, 0); } in mpremquo()
893 int mpremquof(struct t *t) { return mpf2(t, wrap_remquo) || (t->i = mpremquo_q, 0); } in mpremquof()
894 int mpremquol(struct t *t) { return mpl2(t, wrap_remquo) || (t->i = mpremquo_q, 0); } in mpremquol()
896 int mpfma(struct t *t) in mpfma()
914 int mpfmaf(struct t *t) in mpfmaf()
932 int mpfmal(struct t *t) in mpfmal()
956 int mpjn(struct t *t) { mpbessel_n = t->i; return mpd1(t, wrap_jn); } in mpjn()
957 int mpjnf(struct t *t) { mpbessel_n = t->i; return mpf1(t, wrap_jn); } in mpjnf()
958 int mpjnl(struct t *t) { mpbessel_n = t->i; return mpl1(t, wrap_jn); } in mpjnl()
959 int mpyn(struct t *t) { mpbessel_n = t->i; return mpd1(t, wrap_yn); } in mpyn()
960 int mpynf(struct t *t) { mpbessel_n = t->i; return mpf1(t, wrap_yn); } in mpynf()
961 int mpynl(struct t *t) { mpbessel_n = t->i; return mpl1(t, wrap_yn); } in mpynl()