Lines Matching defs:toprow
571 int toprow,
585 ScrnUpdate(xw, toprow, leftcol, nrows, ncols, force);
588 #define ScrnUpdate2(xw, toprow, leftcol, nrows, ncols, force) \
589 ScrnUpdate(xw, toprow, leftcol, nrows, ncols, force)
2467 int toprow, leftcol, nrows, ncols;
2492 toprow = y0 / FontHeight(screen);
2493 if (toprow < 0)
2494 toprow = 0;
2500 nrows = (y1 - 1) / FontHeight(screen) - toprow + 1;
2502 toprow -= screen->scrolls;
2503 if (toprow < 0) {
2504 nrows += toprow;
2505 toprow = 0;
2507 if (toprow + nrows > PlusStatusLine(screen, MaxRows(screen)))
2508 nrows = PlusStatusLine(screen, MaxRows(screen)) - toprow;
2513 ScrnRefresh(xw, toprow, leftcol, nrows, ncols, True);
2515 if (screen->cur_row >= toprow &&
2516 screen->cur_row < toprow + nrows &&