Searched refs:colwidth (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/bin/ls/
H A Dprint.c303 int colwidth; local
334 colwidth = dp->maxlen;
336 colwidth += dp->s_inode + 1;
338 colwidth += dp->s_block + 1;
340 colwidth += 1;
342 colwidth = (colwidth + tabwidth) & ~(tabwidth - 1);
343 if (termwidth < 2 * colwidth) {
347 numcols = termwidth / colwidth;
359 endcol = colwidth;
[all...]
/freebsd-current/usr.bin/systat/
H A Diostat.c348 histogram(long double val, int colwidth, double scale) argument
354 k = MIN(v, colwidth);
355 if (v > colwidth) {
/freebsd-current/contrib/nvi/common/
H A Doptions.c820 int base, b_num, cnt, col, colwidth, curlen, s_num; local
835 colwidth = sp->cols / numcols & ~(STANDARD_TAB - 1);
836 if (colwidth >= 10) {
837 colwidth =
838 (colwidth + STANDARD_TAB) & ~(STANDARD_TAB - 1);
839 numcols = sp->cols / colwidth;
842 colwidth = 0;
907 if (curlen <= colwidth - 2)
929 (int)(colwidth - cnt), "");
/freebsd-current/contrib/nvi/vi/
H A Dv_txt.c2131 size_t base, cnt, col, colwidth, numrows, numcols, prefix, row; local
2160 for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
2163 if (col > colwidth)
2164 colwidth = col;
2166 colwidth += COL_OFF(colwidth, 6);
2183 if (colwidth >= sp->cols) {
2197 numcols = (sp->cols - 1) / colwidth;
2218 "%*s", (int)(colwidth - cnt), "");

Completed in 187 milliseconds