HomeSort by: relevance | last modified time | path
    Searched defs:NCOLS (Results 1 - 5 of 5) sorted by relevancy

  /src/games/boggle/boggle/
prtable.c 46 #define NCOLS 5
82 cols = NCOLS;
  /src/sys/arch/cobalt/stand/boot/
lcd.c 50 #define NCOLS 16
53 char row1[NCOLS];
54 char row2[NCOLS];
91 memcpy(loadfile_message.row2, file, uimin(NCOLS, strlen(file)));
108 for (i = 0; i < NCOLS; i++) {
112 for (i = 0; i < NCOLS; i++) {
  /src/lib/libcurses/PSD.doc/
twinkle1.c 42 #define NCOLS 80
50 static LOCS Layout[NCOLS * NLINES]; /* current board layout */
109 for (x = 0; x < NCOLS; x++)
128 if (x >= LINES && y >= NCOLS)
132 return (x < 3 || x >= NCOLS - 3);
twinkle2.c 40 #define NCOLS 80
48 static LOCS Layout[NCOLS * NLINES]; /* current board layout */
149 if (!AM || (lp->y < NLINES - 1 || lp->x < NCOLS - 1)) {
153 if ((lastx = lp->x + 1) >= NCOLS)
159 lastx = NCOLS - 1;
177 for (x = 0; x < NCOLS; x++)
196 if (x >= LINES && y >= NCOLS)
200 return (x < 3 || x >= NCOLS - 3);
  /src/sys/dev/wscons/
vt100_base.h 35 u_int nrows, ncols, crow, ccol; member in struct:vt100base_data
83 if ((d)->ccol > ((d)->ncols >> 1) - 1) \
84 (d)->ccol = ((d)->ncols >> 1) - 1; \
88 #define NCOLS(d) ((d)->ncols >> (d)->dw)
89 #define COLS_LEFT(d) (NCOLS(d) - (d)->ccol - 1)

Completed in 15 milliseconds