Home | History | Annotate | Download | only in util

Lines Matching refs:total

155   int total;
162 total = 0;
175 total += dopr_outch (buffer, &currlen, maxlen, ch);
279 total += fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
289 total += fmtint (buffer, &currlen, maxlen, value, 8, min, max, flags);
299 total += fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
311 total += fmtint (buffer, &currlen, maxlen, value, 16, min, max, flags);
319 total += fmtfp (buffer, &currlen, maxlen, fvalue, min, max, flags);
338 total += dopr_outch (buffer, &currlen, maxlen, va_arg (args, int));
342 total += fmtstr (buffer, &currlen, maxlen, strvalue, flags, min, max);
346 total += fmtint (buffer, &currlen, maxlen, (long) strvalue, 16, min,
370 total += dopr_outch (buffer, &currlen, maxlen, ch);
399 return total;
407 int total = 0;
425 total += dopr_outch (buffer, currlen, maxlen, ' ');
430 total += dopr_outch (buffer, currlen, maxlen, *value++);
435 total += dopr_outch (buffer, currlen, maxlen, ' ');
438 return total;
453 int total = 0;
505 total += dopr_outch (buffer, currlen, maxlen, ' ');
511 total += dopr_outch (buffer, currlen, maxlen, signvalue);
518 total += dopr_outch (buffer, currlen, maxlen, '0');
525 total += dopr_outch (buffer, currlen, maxlen, convert[--place]);
529 total += dopr_outch (buffer, currlen, maxlen, ' ');
533 return total;
583 int total = 0;
665 total += dopr_outch (buffer, currlen, maxlen, signvalue);
671 total += dopr_outch (buffer, currlen, maxlen, '0');
677 total += dopr_outch (buffer, currlen, maxlen, ' ');
681 total += dopr_outch (buffer, currlen, maxlen, signvalue);
684 total += dopr_outch (buffer, currlen, maxlen, iconvert[--iplace]);
692 total += dopr_outch (buffer, currlen, maxlen, '.');
695 total
700 total += dopr_outch (buffer, currlen, maxlen, '0');
706 total += dopr_outch (buffer, currlen, maxlen, ' ');
710 return total;
743 int total;
749 total = vsnprintf(str, count, fmt, ap);
751 return total;