Searched refs:fmtsz (Results 1 – 2 of 2) sorted by relevance
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_printf.c | 1392 size_t fmtsz = sizeof(format) - 1; in dt_printf_format() local 1562 fmtsz -= f - start; in dt_printf_format() 1574 ret = snprintf(f, fmtsz, "%d", ABS(width)); in dt_printf_format() 1576 fmtsz = MAX(0, fmtsz - ret); in dt_printf_format() 1580 ret = snprintf(f, fmtsz, ".%d", prec); in dt_printf_format() 1582 fmtsz = MAX(0, fmtsz - ret); in dt_printf_format() 1585 if (strlcpy(f, pfd->pfd_fmt, fmtsz) >= fmtsz) in dt_printf_format()
|
/freebsd/contrib/one-true-awk/ |
H A D | run.c | 1083 int fmtsz = recsize; in format() local 1086 #define FMTSZ(a) (fmtsz - ((a) - fmt)) in format() 1102 if ((fmt = (char *) malloc(fmtsz)) == NULL) in format() 1120 if (!adjbuf(&fmt, &fmtsz, MAXNUMSIZE+1+t-fmt, recsize, &t, "format3")) in format()
|