Home | History | Annotate | Download | only in dev

Lines Matching refs:nrows

597 om_eraserows(void *cookie, int startrow, int nrows, long attr)
615 height = ri->ri_font->fontheight * nrows;
622 for (row = startrow; row < startrow + nrows; row++) {
1105 om1_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
1113 height = ri->ri_font->fontheight * nrows;
1116 if (srcrow < dstrow && srcrow + nrows > dstrow) {
1144 om4_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
1162 if (nrows <= 0 || srcrow == dstrow) {
1168 srcrow += nrows - 1;
1169 dstrow += nrows - 1;
1170 src += nrows * rowheight * ri->ri_stride - ri->ri_stride;
1171 dst += nrows * rowheight * ri->ri_stride - ri->ri_stride;
1183 while (nrows > 0) {
1192 for (; r < nrows; r++) {
1271 nrows--;