Lines Matching defs:fmt
36 int xavsprintf_append(char **strp, const char *fmt, va_list ap)
47 n = vsnprintf(NULL, 0, fmt, ap_copy) + 1;
52 n = vsnprintf(p + size, n, fmt, ap);
58 int xasprintf_append(char **strp, const char *fmt, ...)
63 va_start(ap, fmt);
64 n = xavsprintf_append(strp, fmt, ap);
70 int xasprintf(char **strp, const char *fmt, ...)
77 va_start(ap, fmt);
78 n = xavsprintf_append(strp, fmt, ap);
334 int utilfdt_decode_type(const char *fmt, int *type, int *size)
338 if (!*fmt)
343 if (strchr("hlLb", *fmt)) {
344 qualifier = *fmt++;
345 if (qualifier == *fmt) {
346 switch (*fmt++) {
356 if ((*fmt == '\0') || !strchr("iuxs", *fmt))
360 if (*fmt != 's')
364 *type = *fmt++;
367 if (*fmt)