Lines Matching refs:fmt
61 int xasprintf(char **strp, const char *fmt, ...) in xasprintf() argument
73 va_start(ap, fmt); in xasprintf()
74 n = vsnprintf(p, size, fmt, ap); in xasprintf()
350 int utilfdt_decode_type(const char *fmt, int *type, int *size) in utilfdt_decode_type() argument
354 if (!*fmt) in utilfdt_decode_type()
359 if (strchr("hlLb", *fmt)) { in utilfdt_decode_type()
360 qualifier = *fmt++; in utilfdt_decode_type()
361 if (qualifier == *fmt) { in utilfdt_decode_type()
362 switch (*fmt++) { in utilfdt_decode_type()
372 if ((*fmt == '\0') || !strchr("iuxs", *fmt)) in utilfdt_decode_type()
376 if (*fmt != 's') in utilfdt_decode_type()
380 *type = *fmt++; in utilfdt_decode_type()
383 if (*fmt) in utilfdt_decode_type()