/src/sys/dev/wscons/ |
wsemul_dumb.c | 74 u_int nrows, ncols, crow, ccol; member in struct:wsemul_dumb_emuldata 82 int ccol, int crow, long defattr) 92 edp->crow = crow; 102 void *cookie, int ccol, int crow, void *cbcookie, long defattr) 115 edp->crow = crow; 134 (*edp->emulops->cursor)(edp->emulcookie, 0, edp->crow, edp->ccol); 155 edp->crow, edp->ccol, n, edp->defattr); 163 edp->crow = 0 [all...] |
vt100_base.h | 35 u_int nrows, ncols, crow, ccol; member in struct:vt100base_data 77 #define ROWS_ABOVE(d) ((int)(d)->crow - (int)(d)->scrreg_startrow) 79 - (int)(d)->crow - 1) 81 if ((d)->dblwid && (d)->dblwid[(d)->crow]) { \ 91 (d)->crow, (f) << (d)->dw, (t) << (d)->dw, (n) << (d)->dw) 93 (d)->crow, (f) << (d)->dw, (n) << (d)->dw, a)
|
wsemul_sun.c | 84 u_int nrows, ncols, crow, ccol; member in struct:wsemul_sun_emuldata 113 #define ROWS_LEFT (edp->nrows - edp->crow - 1) 117 int ccol, int crow, long defattr) 129 edp->crow = crow; 173 void *cookie, int ccol, int crow, void *cbcookie, long defattr) 190 edp->crow = crow; 242 (*edp->emulops->erasecols)(edp->emulcookie, edp->crow, 253 edp->crow = 0 [all...] |
wsdisplay.c | 317 int crow, long defattr) 346 ccol, crow, scr, defattr); 379 u_int ccol, crow; /* XXX */ local in function:wsscreen_detach 387 &ccol, &crow); 444 int ccol, crow; local in function:wsdisplay_addscreen 470 scrdesc, &cookie, &ccol, &crow, &defattr); 475 cookie, ccol, crow, defattr); 922 int ccol, int crow, long defattr) 929 KASSERT(crow < type->nrows); 939 ccol, crow, [all...] |
/src/sys/arch/powerpc/oea/ |
ofw_rascons.c | 86 int crow = 0; local in function:rascons_cnattach 89 OF_interpret("line#", 0, 1, &crow); 90 if (crow < 0) 91 crow = 0; 118 crow = 0; 142 uimin(crow, ri->ri_rows - 1)), defattr); 165 int crow = 0; local in function:rascons_finalize 171 OF_interpret("line#", 0, 1, &crow); 172 if (crow < 0) 173 crow = 0 [all...] |
/src/games/boggle/boggle/ |
mach.c | 64 static int ccol, crow, maxw; variable in typeref:typename:int 220 move(crow, ccol); 320 crow = LIST_LINE; 339 if (crow == lastline) { 340 crow = LIST_LINE; 344 move(crow, ccol); 347 move(++crow, ccol); 361 move(crow, ccol); 381 move(crow, ccol); 386 move(crow, ccol) [all...] |
/src/games/rogue/ |
move.c | 627 short crow = rogue.row, ccol = rogue.col, turns = 0; local in function:turn_passage 630 if ((dir != 'h') && can_turn(crow, ccol + 1)) { 634 if ((dir != 'l') && can_turn(crow, ccol - 1)) { 638 if ((dir != 'k') && can_turn(crow + 1, ccol)) { 642 if ((dir != 'j') && can_turn(crow - 1, ccol)) {
|
/src/sys/arch/newsmips/apbus/ |
xafb.c | 345 int crow = 0; local in function:xafb_cnattach 355 crow = 0; /* XXX current cursor pos */ 358 wsdisplay_cnattach(&xafb_stdscreen, &dc->dc_ri, 0, crow, defattr);
|
/src/sys/dev/wsfb/ |
genfb.c | 301 uint16_t crow; local in function:genfb_attach 314 if (prop_dictionary_get_uint16(dict, "cursor-row", &crow) == false) 315 crow = 0; 393 if (crow >= ri->ri_rows) { 394 crow = 0; 399 wsdisplay_cnattach(&scp->sc_defaultscreen_descr, ri, 0, crow,
|