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.h173 #define MPD_EXP_INF 2000000000000000001LL macro
217 #define MPD_EXP_INF 1000000001L /* allows for emax=999999999 in the tests */ macro
Dmpdecimal.c2983 exp = (exp > MPD_EXP_INF) ? MPD_EXP_INF : exp; in mpd_qscaleb()
2998 if (!x_sign && x > MPD_EXP_INF) x = MPD_EXP_INF; in mpd_qscaleb()
6245 _settriple(result, resultsign, 1, MPD_EXP_INF); in _mpd_qpow_int()
6455 _settriple(result, resultsign, 1, MPD_EXP_INF); in _qcheck_pow_bounds()
6631 _settriple(result, MPD_POS, 1, MPD_EXP_INF); in mpd_qpow()