Lines Matching defs:MIN_EXPONENT_DIGITS
481 #define MIN_EXPONENT_DIGITS 2
483 /* Ensure that any exponent, if present, is at least MIN_EXPONENT_DIGITS
511 if (exponent_digit_cnt == MIN_EXPONENT_DIGITS) {
515 else if (exponent_digit_cnt > MIN_EXPONENT_DIGITS) {
520 if (significant_digit_cnt < MIN_EXPONENT_DIGITS)
521 significant_digit_cnt = MIN_EXPONENT_DIGITS;
538 int zeros = MIN_EXPONENT_DIGITS - exponent_digit_cnt;
776 MIN_EXPONENT_DIGITS digits, providing the buffer is large enough
778 MIN_EXPONENT_DIGITS, remove as many zeros as possible until we get
779 back to MIN_EXPONENT_DIGITS */