Searched refs:sign_quotient (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/lgpl3/gmp/dist/mpf/
H A Ddiv_ui.c42 mp_size_t sign_quotient; local
75 sign_quotient = usize;
107 r->_mp_size = sign_quotient >= 0 ? rsize : -rsize;
H A Dset_q.c58 mp_size_t sign_quotient, high_zero; local
80 sign_quotient = nsize;
115 SIZ (r) = sign_quotient >= 0 ? qsize : -qsize;
H A Dui_div.c43 mp_size_t sign_quotient; local
49 sign_quotient = vsize;
124 r->_mp_size = sign_quotient >= 0 ? rsize : -rsize;
H A Ddiv.c61 mp_size_t sign_quotient, prec, high_zero, chop; local
79 sign_quotient = usize ^ vsize;
134 SIZ(r) = sign_quotient >= 0 ? rsize : -rsize;
/netbsd-current/external/lgpl3/gmp/dist/mpq/
H A Dget_d.c108 mp_size_t sign_quotient = nsize; local
159 res = mpn_get_d (qp, qsize, sign_quotient, exp);
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Ddiv.c765 int sign_quotient; local
791 sign_quotient = MPFR_MULT_SIGN(MPFR_SIGN(u), MPFR_SIGN(v));
792 MPFR_SET_SIGN(q, sign_quotient);
902 sign_quotient = MPFR_MULT_SIGN(MPFR_SIGN(u), MPFR_SIGN(v));
903 MPFR_SET_SIGN(q, sign_quotient);
934 rnd_mode == (sign_quotient < 0 ? MPFR_RNDU : MPFR_RNDD);
1434 return mpfr_overflow (q, rnd_mode, sign_quotient);
1440 return mpfr_underflow (q, rnd_mode, sign_quotient);
1444 inex *= sign_quotient;

Completed in 113 milliseconds