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.c199 mpd_adjexp(const mpd_t *dec) in mpd_adjexp() function
352 return mpd_adjexp(dec) >= ctx->emin; in mpd_isnormal()
362 return mpd_adjexp(dec) < ctx->emin; in mpd_issubnormal()
1745 adjexp = mpd_adjexp(dec); in _mpd_check_exp()
1855 if (mpd_adjexp(dec) < ctx->emin && !mpd_iszero(dec) && in mpd_check_underflow()
2167 adjexp_a = mpd_adjexp(a); in _mpd_cmp()
2168 adjexp_b = mpd_adjexp(b); in _mpd_cmp()
2214 adjexp_a = mpd_adjexp(a); in _mpd_cmp_abs()
2215 adjexp_b = mpd_adjexp(b); in _mpd_cmp_abs()
2767 mpd_qset_ssize(result, mpd_adjexp(a), ctx, status); in mpd_qlogb()
[all …]
Dmpdecimal.h711 EXTINLINE mpd_ssize_t mpd_adjexp(const mpd_t *dec);
/external/python/cpython3/Modules/_decimal/
D_decimal.c4009 retval = mpd_adjexp(MPD(self)); in Dec_UnaryFuncVA()