Lines Matching defs:format
35 bvprintf(char** buf, char* end, register const char* format, va_list ap)
67 switch (c = *format++)
72 if (*format == '-')
74 format++;
78 if (*format == '0')
80 format++;
84 if ((c = *format) == '*')
86 format++;
95 c = *++format;
101 if ((c = *++format) == '*')
103 format++;
106 else while (c >= '0' && c <= '9') c = *++format;
109 if ((c = *++format) == '*')
111 format++;
117 c = *++format;
121 if ((c = *format++) != 'l')
123 else if ((c = *format++) != 'l')
128 c = *format++;
358 bprintf(char** buf, char* end, const char* format, ...)
363 va_start(ap, format);
364 n = bvprintf(buf, end, format, ap);
370 sfsprintf(char* buffer, size_t size, const char* format, ...)
377 va_start(ap, format);
388 n = bvprintf(buf, end, format, ap);