HomeSort by: relevance | last modified time | path
    Searched defs:col (Results 1 - 25 of 254) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/games/boggle/boggle/
timer.c 73 int col, remaining, row; local
75 getyx(stdscr, row, col);
91 move(row, col);
timer.c 73 int col, remaining, row; local
75 getyx(stdscr, row, col);
91 move(row, col);
prtable.c 72 int col, row; local
108 getyx(stdscr, row, col);
109 __USE(col);
prtable.c 72 int col, row; local
108 getyx(stdscr, row, col);
109 __USE(col);
  /src/sys/dev/raidframe/
rf_callback.h 58 RF_RowCol_t col; /* column IDs to give to the callback func */ member in struct:RF_CallbackValueDesc_s
rf_callback.h 58 RF_RowCol_t col; /* column IDs to give to the callback func */ member in struct:RF_CallbackValueDesc_s
  /src/usr.bin/cut/
x_cut.c 65 int col; local
71 for (col = maxval; col; --col) {
x_cut.c 65 int col; local
71 for (col = maxval; col; --col) {
  /src/usr.bin/systat/
keyboard.c 57 int ch, rch, col; local
71 col = 0;
74 while (col == 0 || (ch != '\r' && ch != '\n')) {
92 if (col == 0) {
121 col++;
127 if (col > 0)
128 col--;
131 if (ch == CTRL('w') && col > 0) {
132 while (--col >= 0 &&
133 isspace((unsigned char)line[col]))
    [all...]
keyboard.c 57 int ch, rch, col; local
71 col = 0;
74 while (col == 0 || (ch != '\r' && ch != '\n')) {
92 if (col == 0) {
121 col++;
127 if (col > 0)
128 col--;
131 if (ch == CTRL('w') && col > 0) {
132 while (--col >= 0 &&
133 isspace((unsigned char)line[col]))
    [all...]
globalcmds.c 80 int col, len; local
84 move(CMDLINE, col = 0);
95 if (col + len > COLS)
98 col += len + 1;
99 if (col + 1 < COLS)
106 if (col == 0 && args) {
globalcmds.c 80 int col, len; local
84 move(CMDLINE, col = 0);
95 if (col + len > COLS)
98 col += len + 1;
99 if (col + 1 < COLS)
106 if (col == 0 && args) {
  /src/sys/arch/cobalt/stand/boot/
devopen.c 49 const char *col; local
59 if ((col = strchr(fname, ':')) != NULL) {
65 devlen = col - fname;
116 fname = ++col;
devopen.c 49 const char *col; local
59 if ((col = strchr(fname, ':')) != NULL) {
65 devlen = col - fname;
116 fname = ++col;
  /src/sys/arch/hp300/stand/common/
machdep.c 149 static int col = 0, row = 0; local
158 for (i = col; i < COLS-1; i++)
162 col = 0;
170 } while (col & 7);
174 buf[col] = c;
175 if (++col == COLS-1)
machdep.c 149 static int col = 0, row = 0; local
158 for (i = col; i < COLS-1; i++)
162 col = 0;
170 } while (col & 7);
174 buf[col] = c;
175 if (++col == COLS-1)
  /src/sys/arch/mmeye/stand/boot/
devopen.c 49 const char *col; local
59 if ((col = strchr(fname, ':')) != NULL) {
65 devlen = col - fname;
108 fname = ++col;
devopen.c 49 const char *col; local
59 if ((col = strchr(fname, ':')) != NULL) {
65 devlen = col - fname;
108 fname = ++col;
  /src/tests/lib/libc/regex/
debug.c 96 int col = 0; local
99 if (col > 40) { \
101 col = 0; \
104 col++; \
107 col++; \
debug.c 96 int col = 0; local
99 if (col > 40) { \
101 col = 0; \
104 col++; \
107 col++; \
  /src/bin/stty/
print.c 196 static int col; variable
203 if (col) {
205 col = 0;
214 if (col == 0) {
215 col = printf("%s: %s", label, s);
218 if ((col + strlen(s)) > LINELENGTH) {
220 col = printf("%s", s) + 8;
223 col += printf(" %s", s);
print.c 196 static int col; variable
203 if (col) {
205 col = 0;
214 if (col == 0) {
215 col = printf("%s: %s", label, s);
218 if ((col + strlen(s)) > LINELENGTH) {
220 col = printf("%s", s) + 8;
223 col += printf(" %s", s);
  /src/sys/arch/powerpc/tools/chrpicon/ppmtochrpicon/
ppmtochrpicon.c 129 int row, col; local
139 for (col = 0; col < img->width; col++) {
152 if ((col+1)%16 == 0)
  /src/usr.bin/fold/
fold.c 136 int col, indx, i; local
138 col = indx = 0;
146 col = indx = 0;
150 col = new_column_position (col, ch);
151 if (col > width) {
172 col = 0;
174 col = new_column_position (col, buf[i]);
179 col = indx = 0
    [all...]
  /src/usr.bin/tip/
value.c 44 static int col = 0; variable
154 if (col > 0) {
156 col = 0;
203 if (col > 0 && col < MIDDLE)
204 while (col++ < MIDDLE)
206 col += strlen(p->v_name);
211 col++;
219 col++;
222 col += strlen(cp)
    [all...]

Completed in 102 milliseconds

1 2 3 4 5 6 7 8 91011