Lines Matching refs:digits
281 ** Fill a number. The order is: optional-sign zero-filling conversion-digits
383 int digits;
392 ** need to stop when we hit 10 digits. In the signed case, we can
396 digits = 0;
400 digits++;
403 if (digits == 0) {
405 digits++;
412 return fill_n(ss, cvt, digits, width, prec, type, flags);
423 int digits;
433 ** need to stop when we hit 10 digits. In the signed case, we can
438 digits = 0;
445 digits++;
448 if (digits == 0) {
450 digits++;
457 return fill_n(ss, cvt, digits, width, prec, type, flags);