Home | History | Annotate | Download | only in Python

Lines Matching refs:MAX_DIGITS

211    the number of digits that follow the decimal point.  Ideally, MAX_DIGITS
212 should satisfy MAX_DIGITS + 400 < MAX_ABS_EXP; that ensures that the
214 #ifndef MAX_DIGITS
215 #define MAX_DIGITS 1000000000U
223 #if MAX_DIGITS > INT_MAX
224 #error "MAX_DIGITS should fit in an int"
1580 if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) {