Lines Matching defs:nrows
514 scr->scr_type->nrows = ri->ri_rows;
893 t->nrows = scr->scr_ri.ri_rows;
1109 vcons_copyrows_buffer(void *cookie, int srcrow, int dstrow, int nrows)
1128 len = ri->ri_cols * nrows;
1139 vcons_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
1144 vcons_copyrows_buffer(cookie, srcrow, dstrow, nrows);
1154 scr->scr_vd->private->copyrows(cookie, srcrow, dstrow, nrows);
1161 vcons_copyrows_noread(void *cookie, int srcrow, int dstrow, int nrows)
1180 for (l = dstrow; l < (dstrow + nrows); l++) {
1198 if (ri->ri_crow >= dstrow && ri->ri_crow < (dstrow + nrows))
1205 vcons_eraserows_buffer(void *cookie, int row, int nrows, long fillattr)
1213 end = ri->ri_cols * (row + nrows) + offset;
1225 vcons_eraserows_cached(void *cookie, int row, int nrows, long fillattr)
1231 int i, pos = row * ri->ri_cols, end = (row+nrows) * ri->ri_cols;
1237 vdp->eraserows(cookie, row, nrows, fillattr);
1242 vcons_eraserows(void *cookie, int row, int nrows, long fillattr)
1247 vcons_eraserows_buffer(cookie, row, nrows, fillattr);
1255 vcons_eraserows_cached(cookie, row, nrows, fillattr);
1257 scr->scr_vd->private->eraserows(cookie, row, nrows, fillattr);