Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_decimal/libmpdec/
Dio.c298 if (dec->exp > MPD_EXP_INF) { in mpd_qset_string()
299 dec->exp = MPD_EXP_INF; in mpd_qset_string()
Dmpdecimal.h162 #define MPD_EXP_INF 2000000000000000001LL macro
206 #define MPD_EXP_INF 1000000001L /* allows for emax=999999999 in the tests */ macro
Dmpdecimal.c3079 exp = (exp > MPD_EXP_INF) ? MPD_EXP_INF : exp; in mpd_qscaleb()
3094 if (!x_sign && x > MPD_EXP_INF) x = MPD_EXP_INF; in mpd_qscaleb()
6409 _settriple(result, resultsign, 1, MPD_EXP_INF); in _mpd_qpow_int()
6619 _settriple(result, resultsign, 1, MPD_EXP_INF); in _qcheck_pow_bounds()
6795 _settriple(result, MPD_POS, 1, MPD_EXP_INF); in mpd_qpow()