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

  /src/usr.bin/crunch/crunchgen/
crunched_main.c 88 size_t columns, len; local
93 columns = 0;
96 if (columns + len < 80)
97 columns += len;
100 columns = len;
  /src/usr.sbin/timed/timedc/
timedc.c 216 int columns, width = 0, lines; local
227 columns = 80 / width;
228 if (columns == 0)
229 columns = 1;
230 lines = (NCMDS + columns - 1) / columns;
232 for (j = 0; j < columns; j++) {
  /src/tests/bin/ps/
t_ps.sh 44 # right-justified columns.
184 atf_set "descr" "Checks that the default set of columns is correct" \
185 "and also check that the columns printed by the -j," \
202 atf_set "descr" "Checks that 'ps -O foo' inserts columns just after" \
220 "columns are printed; this does not test header" \
248 "'ps -o foo=BAR'. This does not test columns " \
308 "does not test the case where all columns have" \
  /src/usr.sbin/lpr/lpc/
lpc.c 270 size_t columns, width = 0, lines; local
280 columns = 80 / width;
281 if (columns == 0)
282 columns = 1;
283 lines = (NCMDS + columns - 1) / columns;
285 for (j = 0; j < columns; j++) {
  /src/bin/csh/
file.c 302 * Print sorted down columns
307 size_t c, columns, i, maxwidth, r, rows; local
316 columns = win.ws_col / maxwidth;
317 if (columns == 0)
318 columns = 1;
319 rows = (count + (columns - 1)) / columns;
321 for (c = 0; c < columns; c++) {
328 if (c < columns - 1) { /* last column? */
  /src/sys/arch/arm/dts/
sun5i-r8-pocketchip.dts 51 keypad,num-columns = <10>;
  /src/usr.bin/tset/
tset.c 156 ncolumns = columns;
166 nlines > 0 && columns > 0) {
  /src/sbin/disklabel/
interact.c 675 int columns, width; local
699 columns = ttywidth / width;
701 if (columns == 0)
702 columns = 1;
703 lines = (numentries + columns - 1) / columns;
704 /* Output sorted by columns */
  /src/sys/ddb/
db_command.c 765 size_t i, j, w, columns, lines, numcmds, width=0; local
779 columns = db_max_width / width;
780 if (columns == 0)
781 columns = 1;
788 lines = (numcmds + columns - 1) / columns;
791 for (j = 0; j < columns; j++) {
  /src/usr.bin/ftp/
util.c 911 size_t columns, lines; local
924 columns = ttywidth / width;
925 if (columns == 0)
926 columns = 1;
927 lines = (sl->sl_cur + columns - 1) / columns;
929 for (j = 0; j < columns; j++) {
  /src/usr.bin/mail/
complete.c 94 size_t i, j, columns, lines; local
107 columns = ttywidth / width;
108 if (columns == 0)
109 columns = 1;
110 lines = (sl->sl_cur + columns - 1) / columns;
113 for (j = 0; j < columns; j++) {
  /src/share/locale/ctype/
gen_ctype_utf8.pl 245 my $columns = codepoint_columns( $code, $charinfo );
246 push @{ $info->{"SWIDTH$columns"} }, $code if defined $columns;
  /src/games/hack/
hack.terminfo.c 87 CO = columns;
  /src/libexec/ftpd/
ftpcmd.y 1770 int columns, lines;
1775 columns = 76 / width;
1776 if (columns == 0)
1777 columns = 1;
1778 lines = (NCMDS + columns - 1) / columns;
1781 for (j = 0; j < columns; j++) {
  /src/sys/dev/ic/
bt8xx.h 61 u_short columns; member in struct:meteor_geomet
179 int frame_size; /* row*columns*depth */
  /src/games/tetris/
screen.c 193 Cols = columns;
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
xen.h 901 /* Number of rows and columns (dimensions in characters). */
902 uint16_t rows, columns; member in struct:dom0_vga_console_info::__anon6697::__anon6698
  /src/sys/dev/pci/bktr/
bktr_core.c 1726 if (geo->columns <= 0) {
1728 "%s: ioctl: %d: columns must be greater than zero.\n",
1729 bktr_name(bktr), geo->columns);
1732 else if ((geo->columns & 0x3fe) != geo->columns) {
1734 "%s: ioctl: %d: columns too large or not even.\n",
1735 bktr_name(bktr), geo->columns);
1769 if ((temp=(geo->rows * geo->columns * geo->frames * 2))) {
1815 bktr->cols = geo->columns;
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nxp/imx/
imx6qdl-gw560x.dtsi 474 keypad,num-columns = <4>;
  /src/lib/libterminfo/
term.h 168 * eat_newline_glitch: Newline ignored after 80 columns (Concept)
274 #define columns t_columns(cur_term) macro
311 * columns: Number of columns in a line
316 * label_width: Number of columns in each label
339 * width_status_line: Number of columns in status line
  /src/share/terminfo/
terminfo 925 # MiNT VT52 emulation. 80 columns, 25 rows.
1827 # 50 lines entries; 80 columns
1849 # 50 lines entries; 132 columns
2447 # reset upon login. Also setting the number of columns glitches
4122 # Menu-1 fails (window resizes to 132-columns, but does not repaint)
4145 # reset6 does reset to 80-columns
7720 # DA1 says this is a VT420 with with 132 columns, NRCS, horizontal scrolling
7753 # no DECCOLM (does not switch between 80/132 columns)
7866 # does not switch between 80/132 columns
8046 # DA = VT200 with 132 columns, colo
    [all...]

Completed in 59 milliseconds