Lines Matching refs:leftcol
572 int leftcol,
578 if (leftcol + ncols <= TScreenOf(xw)->max_col)
580 if (leftcol > 0) {
581 leftcol--;
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;
2496 leftcol = x0 / FontWidth(screen);
2497 if (leftcol < 0)
2498 leftcol = 0;
2501 ncols = (x1 - 1) / FontWidth(screen) - leftcol + 1;
2509 if (leftcol + ncols > MaxCols(screen))
2510 ncols = MaxCols(screen) - leftcol;
2513 ScrnRefresh(xw, toprow, leftcol, nrows, ncols, True);
2517 screen->cur_col >= leftcol &&
2518 screen->cur_col < leftcol + ncols) {