Lines Matching defs:fmt
314 #define verbose(fmt, ...) do { if (verbose_opt) printf(fmt, ## __VA_ARGS__); } while (0)
315 #define debug(fmt, ...) do { if (debug_opt) printf(fmt, ## __VA_ARGS__); } while (0)
1264 static void render_opcode(FILE *out, const char *fmt, ...)
1270 va_start(va, fmt);
1271 vfprintf(out, fmt, va);
1278 static void render_more(FILE *out, const char *fmt, ...)
1283 va_start(va, fmt);
1284 vfprintf(out, fmt, va);