Home | History | Annotate | Download | only in wscons

Lines Matching refs:nrows

527 		scr->scr_type->nrows = ri->ri_rows;
906 t->nrows = scr->scr_ri.ri_rows;
1122 vcons_copyrows_buffer(void *cookie, int srcrow, int dstrow, int nrows)
1141 len = ri->ri_cols * nrows;
1152 vcons_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
1157 vcons_copyrows_buffer(cookie, srcrow, dstrow, nrows);
1167 scr->scr_vd->private->copyrows(cookie, srcrow, dstrow, nrows);
1174 vcons_copyrows_noread(void *cookie, int srcrow, int dstrow, int nrows)
1193 for (l = dstrow; l < (dstrow + nrows); l++) {
1211 if (ri->ri_crow >= dstrow && ri->ri_crow < (dstrow + nrows))
1218 vcons_eraserows_buffer(void *cookie, int row, int nrows, long fillattr)
1226 end = ri->ri_cols * (row + nrows) + offset;
1238 vcons_eraserows_cached(void *cookie, int row, int nrows, long fillattr)
1244 int i, pos = row * ri->ri_cols, end = (row+nrows) * ri->ri_cols;
1250 vdp->eraserows(cookie, row, nrows, fillattr);
1255 vcons_eraserows(void *cookie, int row, int nrows, long fillattr)
1260 vcons_eraserows_buffer(cookie, row, nrows, fillattr);
1268 vcons_eraserows_cached(cookie, row, nrows, fillattr);
1270 nrows, fillattr);