Searched refs:max_col (Results 1 - 9 of 9) sorted by relevance

/xsrc/external/mit/xterm/dist/
H A Dcursor.c72 int max_col = screen->max_col; local in function:CursorSet
77 max_col = screen->rgt_marg;
80 set_cur_col(screen, (use_col <= max_col ? use_col : max_col));
219 max = screen->max_col;
575 TRACE(("set_cur_col %d vs %d\n", value, screen ? screen->max_col : -1));
579 assert(value <= screen->max_col);
H A Dutil.c151 while (kr < screen->max_col) {
196 Boolean full_lines = (Boolean) ((left == 0) && (right == screen->max_col));
396 if ((left > 0 || right < screen->max_col) &&
578 if (leftcol + ncols <= TScreenOf(xw)->max_col)
611 Boolean scroll_full_line = ((left == 0) && (right == screen->max_col));
731 if (left > 0 || right < screen->max_col) {
875 Boolean scroll_full_line = ((left == 0) && (right == screen->max_col));
944 if (left > 0 || right < screen->max_col) {
1222 Boolean scroll_full_line = ((left == 0) && (right == screen->max_col));
1316 Boolean scroll_full_line = ((left == 0) && (right == screen->max_col));
[all...]
H A Dbutton.c763 else if ((col) > screen->max_col) \
764 (col) = screen->max_col,(oor)=True; \
1034 rx = screen->max_col;
3361 int maxcol = screen->max_col;
3488 for (i = screen->max_col,
4431 if ((i = screen->max_col - first.col + 1) > 0) { /* first row */
4487 need += Length(screen, first.row, first.col, screen->max_col) + 1;
4489 need += Length(screen, i, 0, screen->max_col) + 1;
4545 lp = SaveText(screen, first.row, first.col, screen->max_col, lp, &eol);
4549 lp = SaveText(screen, i, 0, screen->max_col, l
[all...]
H A Dscreen.c83 #define getMaxCol(screen) ((xw->flags & ORIGIN) ? (screen)->rgt_marg : (screen)->max_col)
1110 screen->max_col + 1,
1445 int x = LineCursorX(screen, ld, screen->max_col + 1);
1748 hi_col = screen->max_col;
2097 5. Sets screen->max_row and screen->max_col to reflect new size
2344 if (screen->cur_col > screen->max_col)
2345 set_cur_col(screen, screen->max_col);
2483 int max_col = maxRectCol(screen); local in function:limitedParseCol
2490 else if (col > max_col)
2491 col = max_col;
[all...]
H A Dptyx.h301 #define MaxCols(screen) ((screen)->max_col + 1)
1617 ? (screen->max_col / 2) \
1618 : (screen->max_col))
1633 #define LineMaxCol(screen, ld) screen->max_col
2707 int max_col; /* rightmost column */ member in struct:__anon7e1168c34108
3646 * have ended naturally with a CR at column max_col.
H A Dcharproc.c998 for (; isClear && (col <= screen->max_col); ++col) {
1352 if (screen->lft_marg > screen->max_col)
1353 screen->lft_marg = screen->max_col;
1354 if (screen->rgt_marg > screen->max_col)
1355 screen->rgt_marg = screen->max_col;
1359 #define reset_lr_margins(screen) set_lr_margins(screen, 0, screen->max_col)
1390 TRACE(("set_max_col %d, prior %d\n", cols, screen->max_col));
1393 screen->max_col = cols;
2728 for (n = 0; n < screen->max_col; n += SL_BUFSIZ) {
3053 if ((col = GetParam(1)) > screen->max_col)
[all...]
H A Dinput.c154 int col = screen->max_col - screen->nmarginbell;
H A Dxterm.h1630 ((screen)->rgt_marg > (screen)->max_col)
H A Dmain.c3508 handshake.cols = screen->max_col;

Completed in 42 milliseconds