Home
last modified time | relevance | path

Searched refs:BUFSZ (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/crypto/openssh/openbsd-compat/regress/
H A Dsnprintftest.c18 #define BUFSZ 2048 macro
61 if ((src = malloc(BUFSZ)) == NULL) { in main()
64 memset(src, 'a', BUFSZ); in main()
/freebsd-14.2/sbin/bectl/
H A Dbectl_list.c177 #define BUFSZ 64 in print_info() macro
178 char buf[BUFSZ]; in print_info()
280 strftime(buf, BUFSZ, "%Y-%m-%d %H:%M", in print_info()
288 #undef BUFSZ in print_info()
/freebsd-14.2/contrib/one-true-awk/
H A Drun.c1090 #define BUFSZ(a) (bufsize - ((a) - buf)) in format() macro
1191 snprintf(p, BUFSZ(p), "%s", fmt); /* unknown, so dump it too */ in format()
1198 snprintf(p, BUFSZ(p), "%s", t); in format()
1202 case 'f': snprintf(p, BUFSZ(p), fmt, getfval(x)); break; in format()
1203 case 'd': snprintf(p, BUFSZ(p), fmt, (intmax_t) getfval(x)); break; in format()
1204 case 'u': snprintf(p, BUFSZ(p), fmt, (uintmax_t) getfval(x)); break; in format()
1216 snprintf(p, BUFSZ(p), fmt, t); in format()
1295 snprintf(p, BUFSZ(p), fmt, charval); in format()
1321 snprintf(p, BUFSZ(p), fmt, getsval(x)[0]); in format()