Searched refs:crow (Results 1 - 15 of 15) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/dev/wscons/
H A Dwsemul_dumb.c73 u_int nrows, ncols, crow, ccol; member in struct:wsemul_dumb_emuldata
81 int ccol, int crow, long defattr)
91 edp->crow = crow;
101 void *cookie, int ccol, int crow, void *cbcookie, long defattr)
114 edp->crow = crow;
133 (*edp->emulops->cursor)(edp->emulcookie, 0, edp->crow, edp->ccol);
154 edp->crow, edp->ccol, n, edp->defattr);
162 edp->crow
80 wsemul_dumb_cnattach(const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
100 wsemul_dumb_attach(int console, const struct wsscreen_descr *type, void *cookie, int ccol, int crow, void *cbcookie, long defattr) argument
[all...]
H A Dwsemul_sun.c83 u_int nrows, ncols, crow, ccol; member in struct:wsemul_sun_emuldata
112 #define ROWS_LEFT (edp->nrows - edp->crow - 1)
116 int ccol, int crow, long defattr)
128 edp->crow = crow;
172 void *cookie, int ccol, int crow, void *cbcookie, long defattr)
189 edp->crow = crow;
241 (*edp->emulops->erasecols)(edp->emulcookie, edp->crow,
252 edp->crow
115 wsemul_sun_cnattach(const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
171 wsemul_sun_attach(int console, const struct wsscreen_descr *type, void *cookie, int ccol, int crow, void *cbcookie, long defattr) argument
[all...]
H A Dvt100_base.h35 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)
H A Dwsemul_vt100.c134 const struct wsscreen_descr *type, void *cookie, int ccol, int crow,
145 vd->crow = crow;
209 int ccol, int crow, long defattr)
216 wsemul_vt100_init(edp, type, cookie, ccol, crow, defattr);
234 void *cookie, int ccol, int crow, void *cbcookie, long defattr)
246 wsemul_vt100_init(edp, type, cookie, ccol, crow, defattr);
273 *crowp = vd->crow;
303 vd->ccol = vd->crow = 0;
360 if ((vd->crow
133 wsemul_vt100_init(struct wsemul_vt100_emuldata *edp, const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
208 wsemul_vt100_cnattach(const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
233 wsemul_vt100_attach(int console, const struct wsscreen_descr *type, void *cookie, int ccol, int crow, void *cbcookie, long defattr) argument
[all...]
H A Dwsemul_vt100_subr.c122 n = edp->nrows - edp->crow - 1;
125 edp->crow + 1, n,
128 memset(&edp->dblwid[edp->crow + 1], 0, n);
132 if (edp->crow > 0) {
134 0, edp->crow,
137 memset(&edp->dblwid[0], 0, edp->crow);
171 (*edp->emulops->erasecols)(edp->emulcookie, edp->crow,
397 edp->crow -= min(DEF1_ARG(edp, 0), ROWS_ABOVE(edp));
401 edp->crow += min(DEF1_ARG(edp, 0), ROWS_BELOW(edp));
414 edp->crow
[all...]
H A Dwsdisplay.c253 int crow, long defattr)
284 ccol, crow, scr, defattr);
311 u_int ccol, crow; /* XXX */ local
319 &ccol, &crow);
370 int ccol, crow; local
384 scrdesc, &cookie, &ccol, &crow, &defattr);
389 cookie, ccol, crow, defattr);
837 int ccol, int crow, long defattr)
844 KASSERT(crow < type->nrows);
854 ccol, crow,
251 wsscreen_attach(struct wsdisplay_softc *sc, int console, const char *emul, const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
836 wsdisplay_cnattach(const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
862 wsdisplay_preattach(const struct wsscreen_descr *type, void *cookie, int ccol, int crow, long defattr) argument
[all...]
/netbsd-6-1-5-RELEASE/games/boggle/boggle/
H A Dmach.c64 static int ccol, crow, maxw; variable
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, cco
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/oea/
H A Dofw_rascons.c91 int crow = 0; local
94 OF_interpret("line#", 0, 1, &crow);
117 crow = 0;
128 min(crow, ri->ri_rows - 1)), defattr);
/netbsd-6-1-5-RELEASE/sys/arch/acorn26/stand/boot26/
H A Dboot26.c65 int crow; local
132 os_byte(osbyte_OUTPUT_CURSOR_POSITION, 0, 0, NULL, &crow);
133 bootconfig.cpixelrow = crow * vdu_var(os_VDUVAR_TCHAR_SPACEY);
/netbsd-6-1-5-RELEASE/games/rogue/
H A Dmove.c627 short crow = rogue.row, ccol = rogue.col, turns = 0; local
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)) {
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dconstvars.c187 struct crisp *crow = &crisp; local
/netbsd-6-1-5-RELEASE/sys/arch/newsmips/apbus/
H A Dxafb.c340 int crow = 0; local
350 crow = 0; /* XXX current cursor pos */
353 wsdisplay_cnattach(&xafb_stdscreen, &dc->dc_ri, 0, crow, defattr);
/netbsd-6-1-5-RELEASE/sys/dev/wsfb/
H A Dgenfb.c198 uint16_t crow; local
209 if (prop_dictionary_get_uint16(dict, "cursor-row", &crow) == false)
210 crow = 0;
271 if (crow >= ri->ri_rows) {
272 crow = 0;
277 wsdisplay_cnattach(&sc->sc_defaultscreen_descr, ri, 0, crow,
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dgrf.c776 static int ccol = 0, crow = 1; local
789 cp += (crow * ncols + ccol) << 2;
793 crow++;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/apps/
H A Dca.c1967 OPENSSL_STRING *crow=row; local
1969 rrow=TXT_DB_get_by_index(db->db,DB_name,crow);

Completed in 311 milliseconds