Searched defs:maxx (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dputwin.c57 int maxx, nelt; local
69 maxx = win->_maxx;
73 maxx, filep) != maxx)
H A Dwclrtoeol.c55 int maxx = win->_maxx; local
68 if (ISMBIT(win->_y[y][maxx - 1])) {
69 for (cx = maxx - 1; cx >= x; --cx)
73 if (cx + _curs_scrwidth[TYPE(wc)] > maxx)
74 maxx = cx - 1;
79 memSset(&win->_y[y][x], win->_bkgd, maxx - x);
80 maxx = win->_maxx;
84 (*_y16update)(win, 1, maxx - x, y, x);
91 _BEGNS[y] = (short) maxx;
133 fprintf(outf, "CLRTOEOL: line %d begx = %d, maxx
[all...]
H A Dgetwin.c54 short *save_fch, win_nums[SEPARATE_READ], maxy, maxx, nelt; local
66 SEPARATE_READ) || ((win = _makenew(maxy = win_nums[2], maxx =
88 if (fread((char *) *wcp++, sizeof (chtype), maxx, filep) !=
89 maxx) {
H A Dmbinsshift.c45 int x, y, maxx, mv; local
50 maxx = win->_maxx;
57 wp = wcp + maxx - 1;
67 if ((wp + _curs_scrwidth[TYPE(rb)]) > (wcp + maxx))
69 maxx = (int)(wp - wcp);
74 if ((mv = maxx - (x+len)) <= 0)
83 for (wp = wcp + maxx - 1; wp >= ep; --wp)
99 win->_lastch[y] = maxx - 1;
H A Dmvderwin.c61 short *begch, *endch, maxx; local
69 maxx = win->_maxx-1;
70 if ((parx + maxx) >= par->_maxx || (pary + maxy) >= par->_maxy)
89 *endch = maxx;
H A Dwbkgd.c52 short maxx; local
101 maxx = win->_maxx - 1;
105 for (x = maxx, wcp = win->_y[y]; x-- >= 0; ++wcp) {
119 *endch = maxx;
H A Dwinsnstr.c59 int x, cury, endx, maxx, len; local
75 maxx = win->_maxx;
76 for (x = 0; sp[x] != '\0' && x < n && endx < maxx; ++x) {
100 if ((endx += len) > maxx) {
157 win->_lastch[cury] = maxx - 1;
H A Dwnoutref.c57 boty, sminy, smaxy, minx, maxx, lo, hi; local
104 if ((maxx = win->_maxx+xorg) > scrco)
105 maxx = scrco;
106 maxx -= xorg + 1;
131 hi = (doall || *bch == _REDRAW || *ech > maxx) ? maxx : *ech;
142 for (x = lo+1; x <= maxx; ++x)
145 if (x > maxx)
159 hi = (x+w) <= maxx+1 ? x+w-1 : x;
/illumos-gate/usr/src/ucblib/libcurses/
H A Dclrtobot.c35 char *sp, *end, *maxx; local
45 maxx = sp;
52 (int)(maxx - &win->_y[y][0]));
H A Dclrtoeol.c36 char *maxx; local
43 maxx = &win->_y[y][x];
44 for (sp = maxx; sp < end; sp++)
46 maxx = sp;
57 fprintf(outf, "CLRTOEOL: minx = %d, maxx = %d, firstch = %d,"
58 " lastch = %d\n", minx, maxx - win->_y[y], win->_firstch[y],
H A Derase.c35 char *sp, *end, *start, *maxx; local
47 maxx = sp;
54 (int)(maxx - win->_y[y]));
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipfstat.c1176 int i, j, winy, tsentry, maxx, maxy, redraw = 0, ret = 0; local
1201 getmaxyx(stdscr, maxy, maxx);
1372 getmaxyx(stdscr, maxy, maxx);
1387 for (j = 0 ; j < (maxx - 8 - strlen(str1)) / 2; j++)
1393 move(winy, maxx - 8);

Completed in 62 milliseconds