Lines Matching defs:digits
49 static const char *const digits = "0123456789";
91 unsigned int scale_digits; /* digits to shift fixed-point */
103 ep += strspn(ep, digits);
106 ep += strspn(ep, digits);
658 /* copy integer digits (before '.') into buf */
659 int_digits = strspn(nptr, digits);
661 /* too many digits */
665 frac_digits = strspn(nptr, digits);
678 /* copy fraction digits (after '.') into buf */
679 frac_digits = strspn(nptr, digits);
681 /* copy only enough digits to fit the scale digits */
690 /* check if rounding necessary, then skip truncated fraction digits */
694 /* if necessary, add zeroes to buf to fill the scale digits */