Lines Matching refs:mpd1
21 static int mpd1(struct t *s, double (*f)(double))
58 int mpsinpi(struct t *t) { return mpd1(t, sinpi); }
81 int mpacos(struct t *t) { return mpd1(t, acos); }
84 int mpacosh(struct t *t) { return mpd1(t, acosh); }
87 int mpasin(struct t *t) { return mpd1(t, asin); }
90 int mpasinh(struct t *t) { return mpd1(t, asinh); }
93 int mpatan(struct t *t) { return mpd1(t, atan); }
99 int mpatanh(struct t *t) { return mpd1(t, atanh); }
102 int mpcbrt(struct t *t) { return mpd1(t, cbrt); }
105 int mpceil(struct t *t) { return mpd1(t, ceil); }
111 int mpcos(struct t *t) { return mpd1(t, cos); }
114 int mpcosh(struct t *t) { return mpd1(t, cosh); }
117 int mperf(struct t *t) { return mpd1(t, erf); }
120 int mperfc(struct t *t) { return mpd1(t, erfc); }
123 int mpexp(struct t *t) { return mpd1(t, exp); }
126 int mpexp2(struct t *t) { return mpd1(t, exp2); }
129 int mpexpm1(struct t *t) { return mpd1(t, expm1); }
132 int mpfabs(struct t *t) { return mpd1(t, fabs); }
138 int mpfloor(struct t *t) { return mpd1(t, floor); }
153 int mplog(struct t *t) { return mpd1(t, log); }
156 int mplog10(struct t *t) { return mpd1(t, log10); }
159 int mplog1p(struct t *t) { return mpd1(t, log1p); }
162 int mplog2(struct t *t) { return mpd1(t, log2); }
165 int mplogb(struct t *t) { return mpd1(t, logb); }
168 int mpnearbyint(struct t *t) { return mpd1(t, nearbyint); }
197 int mprint(struct t *t) { return mpd1(t, rint); }
200 int mpround(struct t *t) { return mpd1(t, round); }
203 int mpsin(struct t *t) { return mpd1(t, sin); }
206 int mpsinh(struct t *t) { return mpd1(t, sinh); }
209 int mpsqrt(struct t *t) { return mpd1(t, sqrt); }
212 int mptan(struct t *t) { return mpd1(t, tan); }
215 int mptanh(struct t *t) { return mpd1(t, tanh); }
218 int mptgamma(struct t *t) { return mpd1(t, tgamma); }
221 int mptrunc(struct t *t) { return mpd1(t, trunc); }
224 int mpj0(struct t *t) { return mpd1(t, j0); }
225 int mpj1(struct t *t) { return mpd1(t, j1); }
226 int mpy0(struct t *t) { return mpd1(t, y0); }
227 int mpy1(struct t *t) { return mpd1(t, y1); }
238 int mpexp10(struct t *t) { return mpd1(t, exp10); }
241 int mppow10(struct t *t) { return mpd1(t, pow10); }