Home | History | Annotate | Download | only in Python

Lines Matching refs:MAX_DIGITS

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