Home
last modified time | relevance | path

Searched refs:MPD_EXP_CLAMP (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/_decimal/libmpdec/
Dmpdecimal.h163 #define MPD_EXP_CLAMP (-4000000000000000001LL) macro
207 #define MPD_EXP_CLAMP (-2000000001L) /* allows for emin=-999999999 in the tests */ macro
Dmpdecimal.c3080 exp = (exp < MPD_EXP_CLAMP) ? MPD_EXP_CLAMP : exp; in mpd_qscaleb()
3095 if (x_sign && x > -MPD_EXP_CLAMP) x = -MPD_EXP_CLAMP; in mpd_qscaleb()