Lines Matching refs:frd
28 MPFR_DECL_INIT (frd, 1080); in mpfr_tanpi()
29 mpfr_const_pi (frd, GMP_RNDN); in mpfr_tanpi()
30 mpfr_mul (frd, frd, arg, GMP_RNDN); in mpfr_tanpi()
31 return mpfr_tan (ret, frd, GMP_RNDN); in mpfr_tanpi()
34 MPFR_DECL_INIT (frd, 1080); in mpfr_sinpi()
35 mpfr_const_pi (frd, GMP_RNDN); in mpfr_sinpi()
36 mpfr_mul (frd, frd, arg, GMP_RNDN); in mpfr_sinpi()
37 return mpfr_sin (ret, frd, GMP_RNDN); in mpfr_sinpi()
41 MPFR_DECL_INIT (frd, 1080); in mpfr_cospi()
42 mpfr_const_pi (frd, GMP_RNDN); in mpfr_cospi()
43 mpfr_mul (frd, frd, arg, GMP_RNDN); in mpfr_cospi()
44 return mpfr_cos (ret, frd, GMP_RNDN); in mpfr_cospi()