Searched refs:mpf2 (Results 1 – 2 of 2) sorted by relevance
/third_party/musl/libc-test/src/math/gen/ |
D | mplibm.c | 12 static int mpf2(struct t *s, float (*f)(float,float)) in mpf2() function 72 int mpaddf(struct t *t) { return mpf2(t, addf); } in mpaddf() 75 int mpmulf(struct t *t) { return mpf2(t, mulf); } in mpmulf() 78 int mpdivf(struct t *t) { return mpf2(t, divf); } in mpdivf() 97 int mpatan2f(struct t *t) { return mpf2(t, atan2f); } in mpatan2f() 109 int mpcopysignf(struct t *t) { return mpf2(t, copysignf); } in mpcopysignf() 136 int mpfdimf(struct t *t) { return mpf2(t, fdimf); } in mpfdimf() 142 int mpfmaxf(struct t *t) { return mpf2(t, fmaxf); } in mpfmaxf() 145 int mpfminf(struct t *t) { return mpf2(t, fminf); } in mpfminf() 148 int mpfmodf(struct t *t) { return mpf2(t, fmodf); } in mpfmodf() [all …]
|
D | mp.c | 156 static int mpf2(struct t *p, int (*fmp)(mpfr_t, const mpfr_t, const mpfr_t, mpfr_rnd_t)) in mpf2() function 353 int mpaddf(struct t *t) { return mpf2(t, mpfr_add); } in mpaddf() 356 int mpmulf(struct t *t) { return mpf2(t, mpfr_mul); } in mpmulf() 359 int mpdivf(struct t *t) { return mpf2(t, mpfr_div); } in mpdivf() 378 int mpatan2f(struct t *t) { return mpf2(t, mpfr_atan2); } in mpatan2f() 390 int mpcopysignf(struct t *t) { return mpf2(t, mpfr_copysign); } in mpcopysignf() 417 int mpfdimf(struct t *t) { return mpf2(t, mpfr_dim); } in mpfdimf() 423 int mpfmaxf(struct t *t) { return mpf2(t, mpfr_max); } in mpfmaxf() 426 int mpfminf(struct t *t) { return mpf2(t, mpfr_min); } in mpfminf() 429 int mpfmodf(struct t *t) { return mpf2(t, mpfr_fmod); } in mpfmodf() [all …]
|