Lines Matching refs:format
310 HChar* format,
334 if (!format)
336 if (*format == 0)
339 if (*format != '%') {
340 PUT(*format);
341 format++;
345 saved_format = format;
350 format++;
352 if (*format == '-') {
353 format++;
356 if (*format == '0') {
357 format++;
360 while (*format >= '0' && *format <= '9') {
361 fwidth = fwidth * 10 + (*format - '0');
362 format++;
364 if (*format == 'l') {
365 format++;
366 if (*format == 'l') {
367 format++;
372 switch (*format) {
415 Int base = *format == 'u' ? 10 : 16;
416 Bool hexcaps = True; /* *format == 'X'; */
433 Bool hexcaps = toBool(*format == 'P');
448 /* no idea what it is. Print the format literally and
450 while (saved_format <= format) {
457 format++;
488 UInt vex_printf ( HChar* format, ... )
492 va_start(vargs,format);
496 ret = vprintf_wrk ( add_to_myprintf_buf, format, vargs );
517 UInt vex_sprintf ( HChar* buf, HChar *format, ... )
524 va_start(vargs,format);
526 ret = vprintf_wrk ( add_to_vg_sprintf_buf, format, vargs );