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

/freebsd-9.3-release/bin/ls/
H A Dprint.c235 int colwidth; local
266 colwidth = dp->maxlen;
268 colwidth += dp->s_inode + 1;
270 colwidth += dp->s_block + 1;
272 colwidth += 1;
274 colwidth = (colwidth + tabwidth) & ~(tabwidth - 1);
275 if (termwidth < 2 * colwidth) {
279 numcols = termwidth / colwidth;
291 endcol = colwidth;
[all...]
/freebsd-9.3-release/usr.bin/systat/
H A Diostat.c362 histogram(long double val, int colwidth, double scale) argument
368 k = MIN(v, colwidth);
369 if (v > colwidth) {
/freebsd-9.3-release/contrib/nvi/common/
H A Doptions.c794 int base, b_num, cnt, col, colwidth, curlen, s_num; local
809 colwidth = sp->cols / numcols & ~(STANDARD_TAB - 1);
810 if (colwidth >= 10) {
811 colwidth =
812 (colwidth + STANDARD_TAB) & ~(STANDARD_TAB - 1);
813 numcols = sp->cols / colwidth;
816 colwidth = 0;
881 if (curlen <= colwidth - 2)
903 (int)(colwidth - cnt), "");
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_txt.c2191 size_t base, cnt, col, colwidth, numrows, numcols, prefix, row; local
2216 for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
2219 if (col > colwidth)
2220 colwidth = col;
2222 colwidth += COL_OFF(colwidth, 6);
2239 if (colwidth > sp->cols) {
2251 numcols = (sp->cols - 1) / colwidth;
2270 "%*s", (int)(colwidth - cnt), "");

Completed in 95 milliseconds