Searched refs:_maxy (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_scrreg.c51 top >= 0 && top <= win->_maxy &&
52 bottom >= 0 && bottom <= win->_maxy &&
H A Dwresize.c64 if (tst->_pary > cmp->_maxy)
65 tst->_pary = cmp->_maxy;
69 if (tst->_maxy + tst->_pary > cmp->_maxy)
70 tst->_maxy = cmp->_maxy - tst->_pary;
74 for (row = 0; row <= tst->_maxy; ++row) {
100 (long) win->_maxy, (long) win->_maxx,
113 size_y = win->_maxy;
125 if (win->_pary + ToLines > win->_parent->_maxy
[all...]
H A Dlib_insdel.c56 _nc_scroll_window(win, -n, win->_cury, win->_maxy,
H A Dlib_redrawln.c66 if (end > curscr->_maxy + 1)
67 end = curscr->_maxy + 1;
68 if (end > win->_maxy + 1)
69 end = win->_maxy + 1;
H A Dlib_touch.c54 if (!win || (line > win->_maxy) || (line < 0))
68 for (i = 0; i <= win->_maxy; i++)
81 if (!win || (n < 0) || (y < 0) || (y > win->_maxy))
85 if (i > win->_maxy)
H A Dlib_window.c107 assert((wp->_pary <= pp->_maxy) &&
108 ((wp->_pary + wp->_maxy) <= pp->_maxy));
110 for (y = 0; y <= wp->_maxy; y++) {
143 assert((win->_pary <= pp->_maxy) &&
144 ((win->_pary + win->_maxy) <= pp->_maxy));
146 for (y = 0; y <= win->_maxy; y++) {
191 nwin = newpad(win->_maxy + 1,
194 nwin = newwin(win->_maxy
[all...]
H A Dlib_clrbot.c58 (long) win->_cury, (long) win->_maxy, (long) win->_maxx));
60 for (y = win->_cury; y <= win->_maxy; y++) {
H A Dlib_clreol.c64 && y < win->_maxy) {
73 || y > win->_maxy
H A Dlib_vline.c59 if (end > win->_maxy)
60 end = win->_maxy;
H A Dlib_scroll.c65 || bottom > win->_maxy) {
92 for (line = top; line < limit && line <= win->_maxy; line++) {
103 for (line = top; line <= limit && line <= win->_maxy; line++) {
121 if (next < 0 || next > win->_maxy) {
H A Dlib_mvwin.c86 0, 0, 0, 0, win->_maxy, win->_maxx, 0);
99 if (by + win->_maxy > screen_lines - 1
H A Dlib_screen.c52 || tmp._maxy == 0
53 || tmp._maxy > MAX_SIZE
59 nwin = newpad(tmp._maxy + 1, tmp._maxx + 1);
61 nwin = newwin(tmp._maxy + 1, tmp._maxx + 1, 0, 0);
72 nwin->_maxy = tmp._maxy;
99 for (n = 0; n <= nwin->_maxy; n++) {
131 for (n = 0; n <= win->_maxy; n++) {
H A Dlib_erase.c58 for (y = 0; y <= win->_maxy; y++) {
H A Dlib_getstr.c124 && win->_cury == win->_maxy
169 && oldy == win->_maxy
170 && win->_cury == win->_maxy) {
184 if (win->_cury < win->_maxy)
H A Dlib_overlay.c63 (long) src->_maxy,
68 (long) dst->_maxy,
74 sy2 = sy1 + src->_maxy;
79 dy2 = dy1 + dst->_maxy;
157 if ((sminrow + dmaxrow - dminrow) <= (src->_maxy + 1) &&
163 if (dmaxrow <= dst->_maxy && dmaxcol <= dst->_maxx) {
H A Dlib_pad.c148 T((" pminrow + smaxrow - sminrow %ld, win->_maxy %ld",
149 (long) pmaxrow, (long) win->_maxy));
156 if (pmaxrow > win->_maxy) {
157 smaxrow -= (pmaxrow - win->_maxy);
201 i <= pmaxrow && m <= newscr->_maxy;
259 for (i = pmaxrow + 1; (i <= win->_maxy)
H A Dlib_newwin.c99 for (i = 0; i <= win->_maxy; i++)
167 if (begy + num_lines > orig->_maxy + 1
172 num_lines = orig->_maxy + 1 - begy;
243 win->_maxy = num_lines - 1;
H A Dlib_bkgd.c132 for (y = 0; y <= win->_maxy; y++) {
H A Dlib_refresh.c144 src_row <= win->_maxy && dst_row <= newscr->_maxy;
H A Dresizeterm.c75 (long) wp->win._maxy + 1,
188 int myLines = win->_maxy + 1;
H A Dlib_box.c106 endy = win->_maxy;
/macosx-10.10/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_vline_set.c58 if (end > win->_maxy)
59 end = win->_maxy;
H A Dlib_get_wstr.c152 && win->_cury == win->_maxy
191 && oldy == win->_maxy
192 && win->_cury == win->_maxy) {
206 if (win->_cury < win->_maxy)
H A Dlib_box_set.c91 endy = win->_maxy;
/macosx-10.10/ncurses-44/ncurses/ncurses/trace/
H A Dlib_tracedmp.c55 for (width = i = 0; i <= win->_maxy; ++i) {
75 for (n = 0; n <= win->_maxy; ++n) {

Completed in 188 milliseconds

12