Lines Matching refs:fmt
50 int xasprintf(char **strp, const char *fmt, ...) in xasprintf() argument
62 va_start(ap, fmt); in xasprintf()
63 n = vsnprintf(p, size, fmt, ap); in xasprintf()
340 int utilfdt_decode_type(const char *fmt, int *type, int *size) in utilfdt_decode_type() argument
344 if (!*fmt) in utilfdt_decode_type()
349 if (strchr("hlLb", *fmt)) { in utilfdt_decode_type()
350 qualifier = *fmt++; in utilfdt_decode_type()
351 if (qualifier == *fmt) { in utilfdt_decode_type()
352 switch (*fmt++) { in utilfdt_decode_type()
362 if ((*fmt == '\0') || !strchr("iuxs", *fmt)) in utilfdt_decode_type()
366 if (*fmt != 's') in utilfdt_decode_type()
370 *type = *fmt++; in utilfdt_decode_type()
373 if (*fmt) in utilfdt_decode_type()