Lines Matching refs:format
319 HChar* format,
343 if (!format)
345 if (*format == 0)
348 if (*format != '%') {
349 PUT(*format);
350 format++;
354 saved_format = format;
359 format++;
361 if (*format == '-') {
362 format++;
365 if (*format == '0') {
366 format++;
369 while (*format >= '0' && *format <= '9') {
370 fwidth = fwidth * 10 + (*format - '0');
371 format++;
373 if (*format == 'l') {
374 format++;
375 if (*format == 'l') {
376 format++;
381 switch (*format) {
424 Int base = *format == 'u' ? 10 : 16;
425 Bool hexcaps = True; /* *format == 'X'; */
442 Bool hexcaps = toBool(*format == 'P');
457 /* no idea what it is. Print the format literally and
459 while (saved_format <= format) {
466 format++;
497 UInt vex_printf ( HChar* format, ... )
501 va_start(vargs,format);
505 ret = vprintf_wrk ( add_to_myprintf_buf, format, vargs );
526 UInt vex_sprintf ( HChar* buf, HChar *format, ... )
533 va_start(vargs,format);
535 ret = vprintf_wrk ( add_to_vg_sprintf_buf, format, vargs );