Lines Matching defs:count
77 #define TB_RESCHED 3 /* mtb_time_left contains tick count */
485 int count;
496 count = 0;
499 count += (*putc_func)(cookie, *fmt++);
530 count += (*putc_func)(cookie, va_arg(ap, int *));
546 count += (*putc_func)(cookie, *fcp);
550 count += (*putc_func)(cookie,
552 count += (*putc_func)(cookie,
578 count += (*putc_func)(cookie, *fcp++);
583 count += (*putc_func)(cookie, ' ');
591 return (count);
599 count += (*putc_func)(cookie, '-');
626 count += (*putc_func)(cookie, *fmt++);
629 return (count);
637 int count = -1;
641 count = mi_iprintf(fmt, ap, (pfi_t)mi_mpprintf_putc,
643 if (count != -1)
647 return (count);
655 int count = -1;
660 count = mi_iprintf(fmt, ap, (pfi_t)mi_mpprintf_putc,
662 if (count != -1)
666 return (count);
911 int count = -1;
914 count = mi_iprintf(fmt, ap, (pfi_t)mi_sprintf_putc,
916 if (count != -1)
920 return (count);
923 /* Used to count without writing data */
970 int count = -1;
985 count = mi_iprintf(fmt, ap, mi_sprintf_noop, (char *)&cp);
986 if (count > sizeof (buf) &&
987 !(alloc_buf = mi_alloc((uint_t)count + 2, BPRI_MED))) {
995 count = mi_iprintf(fmt, ap, mi_sprintf_putc, (char *)&cp);
996 if (count != -1)