Lines Matching refs:Format
423 * Format - Standard printf format
436 const char *Format,
457 for (; *Format; ++Format)
459 if (*Format != '%')
461 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
472 ++Format;
473 if (*Format == '#')
477 else if (*Format == '0')
481 else if (*Format == '+')
485 else if (*Format == ' ')
489 else if (*Format == '-')
503 if (isdigit ((int) *Format))
505 Format = AcpiUtScanNumber (Format, &Number);
508 else if (*Format == '*')
510 ++Format;
522 if (*Format == '.')
524 ++Format;
525 if (isdigit ((int) *Format))
527 Format = AcpiUtScanNumber (Format, &Number);
530 else if (*Format == '*')
532 ++Format;
545 if (*Format == 'h' || *Format == 'l' || *Format == 'L')
547 Qualifier = *Format;
548 ++Format;
550 if (Qualifier == 'l' && *Format == 'l')
553 ++Format;
557 switch (*Format)
650 if (*Format)
652 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
656 --Format;
720 * Format, ... - Standard printf format
732 const char *Format,
739 va_start (Args, Format);
740 Length = AcpiUtVsnprintf (String, Size, Format, Args);
753 * Format - Standard printf format
765 const char *Format,
774 sizeof (AcpiGbl_PrintBuffer), Format, Args);
788 * Format, ... - Standard printf format
799 const char *Format,
806 va_start (Args, Format);
807 Length = AcpiUtFileVprintf (File, Format, Args);