Home | History | Annotate | Download | only in dev

Lines Matching defs:nrows

278 	int       nrows;
463 adp->gfxheight = amidisplaycc_screentab[0].wsdescr.nrows *
509 if (row < 0 || col < 0 || row >= scr->nrows || col >= scr->ncols)
605 if (row < 0 || col < 0 || row >= scr->nrows || col >= scr->ncols)
719 row < 0 || row >= scr->nrows)
769 if (row < 0 || row >= scr->nrows ||
799 amidisplaycc_copyrows(void *screen, int srcrow, int dstrow, int nrows)
823 if (srcrow < 0 || srcrow + nrows > scr->nrows ||
824 dstrow < 0 || dstrow + nrows > scr->nrows)
842 srcbmapoffset += rowbytes * (nrows - 1);
843 srcrow += nrows - 1;
845 dstbmapoffset += rowbytes * (nrows - 1);
846 dstrow += nrows - 1;
858 for (j = 0 ; j < nrows ; j++) {
927 amidisplaycc_eraserows(void *screen, int row, int nrows, long attr)
947 if (row < 0 || row + nrows > scr->nrows)
959 fillsize = rowbytes * nrows;
966 for (j = 0 ; j < nrows ; j++)
977 for (j = 0 ; j < scr->fontheight * nrows ; j++) {
1273 if (screenp->nrows > MAXROWS)
1285 dimension.height = screenp->nrows * fontheight;
1308 scr->nrows = screenp->nrows;