Lines Matching refs:fmt
260 outfmt(struct output *file, const char *fmt, ...) in outfmt() argument
264 va_start(ap, fmt); in outfmt()
265 doformat(file, fmt, ap); in outfmt()
271 out1fmt(const char *fmt, ...) in out1fmt() argument
275 va_start(ap, fmt); in out1fmt()
276 doformat(out1, fmt, ap); in out1fmt()
282 fmtstr(char *outbuf, size_t length, const char *fmt, ...) in fmtstr() argument
287 va_start(ap, fmt); in fmtstr()
288 ret = xvsnprintf(outbuf, length, fmt, ap); in fmtstr()
427 xvsnprintf(char *outbuf, size_t length, const char *fmt, va_list ap) in xvsnprintf() argument
446 ret = vsnprintf(outbuf, length, fmt, ap); in xvsnprintf()