Home
last modified time | relevance | path

Searched refs:mpd_adjexp (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/_decimal/libmpdec/
Dmpdecimal.c202 mpd_adjexp(const mpd_t *dec) in mpd_adjexp() function
356 return mpd_adjexp(dec) >= ctx->emin; in mpd_isnormal()
366 return mpd_adjexp(dec) < ctx->emin; in mpd_issubnormal()
1822 adjexp = mpd_adjexp(dec); in _mpd_check_exp()
1932 if (mpd_adjexp(dec) < ctx->emin && !mpd_iszero(dec) && in mpd_check_underflow()
2263 adjexp_a = mpd_adjexp(a); in _mpd_cmp()
2264 adjexp_b = mpd_adjexp(b); in _mpd_cmp()
2310 adjexp_a = mpd_adjexp(a); in _mpd_cmp_abs()
2311 adjexp_b = mpd_adjexp(b); in _mpd_cmp_abs()
2863 mpd_qset_ssize(result, mpd_adjexp(a), ctx, status); in mpd_qlogb()
[all …]
Dmpdecimal.h704 EXTINLINE mpd_ssize_t mpd_adjexp(const mpd_t *dec);
/external/python/cpython3/Modules/_decimal/
D_decimal.c4154 retval = mpd_adjexp(MPD(self)); in Dec_UnaryFuncVA()