HomeSort by: relevance | last modified time | path
    Searched refs:max_cols (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/menuc/
menu_sys.def 54 static int max_lines = 0, max_cols = 0;
240 if (w + wadd > max_cols) {
244 w, wadd, max_cols, title);
250 x = (max_cols - (w + wadd)) / 2; /* center */
251 else if (x + w + wadd > max_cols)
252 x = max_cols - (w + wadd); /* right align */
671 max_cols = getmaxx(stdscr);
  /src/sbin/newfs_ext2fs/
mke2fs.c 193 int i, len, col, delta, fld_width, max_cols; local in function:mke2fs
599 max_cols = winsize.ws_col;
601 max_cols = 80;
604 max_cols -= 4;
607 delta = verbosity > 2 ? 0 : max_cols * BASE / ncg;
636 if (col + len < max_cols)
648 delta = max_cols * BASE / delta;
  /src/sbin/newfs/
mkfs.c 192 int len, col, delta, fld_width, max_cols; local in function:mkfs
677 max_cols = winsize.ws_col;
679 max_cols = 80;
682 max_cols -= 4;
685 delta = verbosity > 2 ? 0 : max_cols * BASE / sblock.fs_ncg;
704 if (col + len < max_cols)
716 delta = max_cols * BASE / delta;

Completed in 16 milliseconds