Lines Matching refs:ncols
574 int ncols,
578 if (leftcol + ncols <= TScreenOf(xw)->max_col)
579 ncols++;
582 ncols++;
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;
2501 ncols = (x1 - 1) / FontWidth(screen) - leftcol + 1;
2509 if (leftcol + ncols > MaxCols(screen))
2510 ncols = MaxCols(screen) - leftcol;
2512 if (nrows > 0 && ncols > 0) {
2513 ScrnRefresh(xw, toprow, leftcol, nrows, ncols, True);
2518 screen->cur_col < leftcol + ncols) {