Lines Matching refs:nrows
667 qv_rows_overlap(int srcrow, int dstrow, int nrows)
670 if (dstrow + nrows <= srcrow)
676 if (srcrow + nrows <= dstrow)
687 qv_copyrows(void *id, int srcrow, int dstrow, int nrows)
698 nrows * QV_COLS);
700 nrows * QV_COLS);
704 ol = qv_rows_overlap(srcrow, dstrow, nrows);
706 for (n = 0; n < nrows; n++)
710 for (n = 0; n < nrows; n++) {
721 qv_copyrows(id, dstrow + nrows - srcrow + dstrow,
722 dstrow + nrows, srcrow - dstrow);
725 for (n = nrows - 1; n >= 0; n--) {
744 qv_eraserows(void *id, int startrow, int nrows, long fillattr)
749 memset(&ss->ss_image[startrow][0], 0, nrows * QV_COLS);
750 memset(&ss->ss_attr[startrow][0], 0, nrows * QV_COLS);
754 for (row = startrow; row < startrow + nrows; row++) {