Lines Matching defs:fmt
316 const char *fmt, DisasmOutputCB_t outcb, DisasmGetSymCB_t symcb,
319 const char *save_fmt = fmt;
630 fmt = save_fmt;
635 while (*fmt != '\0')
637 if (*fmt != '%')
639 char ch = *fmt++;
642 switch ((ch = *fmt++))
647 ch = *fmt;
652 ch = *++fmt;
657 ++fmt;
677 else if (ch == '\e' && *fmt == '[')
679 deferred_start = fmt - 1;
681 ++fmt;
682 while (*fmt != 'm' && *fmt != '\0');
684 if (*fmt == 'm')
686 deferred_len = ++fmt - deferred_start;
690 fmt = deferred_start + 1;
696 ++fmt;
699 while (isdigit (*fmt))
700 width = width * 10 + (*fmt++ - '0');
703 if (*fmt == '.')
704 while (isdigit (*++fmt))
705 prec = prec * 10 + (*fmt - '0');
709 switch (*fmt++)