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

/freebsd-11-stable/bin/ls/
H A Dprint.c368 int colwidth; local
398 colwidth = dp->maxlen;
400 colwidth += dp->s_inode + 1;
402 colwidth += dp->s_block + 1;
404 colwidth += 1;
406 colwidth = (colwidth + tabwidth) & ~(tabwidth - 1);
407 if (termwidth < 2 * colwidth) {
411 numcols = termwidth / colwidth;
425 endcol = colwidth;
[all...]
/freebsd-11-stable/usr.bin/systat/
H A Diostat.c351 histogram(long double val, int colwidth, double scale) argument
357 k = MIN(v, colwidth);
358 if (v > colwidth) {
/freebsd-11-stable/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-11-stable/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 120 milliseconds