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

/freebsd-10.0-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-10.0-release/usr.bin/systat/
H A Diostat.c361 histogram(long double val, int colwidth, double scale) argument
367 k = MIN(v, colwidth);
368 if (v > colwidth) {
/freebsd-10.0-release/contrib/nvi/common/
H A Doptions.c832 int base, b_num, cnt, col, colwidth, curlen, s_num; local
847 colwidth = sp->cols / numcols & ~(STANDARD_TAB - 1);
848 if (colwidth >= 10) {
849 colwidth =
850 (colwidth + STANDARD_TAB) & ~(STANDARD_TAB - 1);
851 numcols = sp->cols / colwidth;
854 colwidth = 0;
919 if (curlen <= colwidth - 2)
941 (int)(colwidth - cnt), "");
/freebsd-10.0-release/contrib/nvi/vi/
H A Dv_txt.c2155 size_t base, cnt, col, colwidth, numrows, numcols, prefix, row; local
2184 for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
2187 if (col > colwidth)
2188 colwidth = col;
2190 colwidth += COL_OFF(colwidth, 6);
2207 if (colwidth >= sp->cols) {
2221 numcols = (sp->cols - 1) / colwidth;
2242 "%*s", (int)(colwidth - cnt), "");

Completed in 161 milliseconds