Symbol: getmaxy
games/dab/ttyscrn.cc
201
ty = getmaxy(stdscr);
lib/libcurses/curses.h
621
#define getmaxyx(w, y, x) (y) = getmaxy(w), (x) = getmaxx(w)
lib/libcurses/curses.h
677
int getmaxy(WINDOW *);
lib/libform/post.c
61
if ((form->scrwin != NULL) && ((rows > getmaxy(form->scrwin))
tests/lib/libcurses/slave/curses_commands.c
1548
report_int(getmaxy(win));
usr.bin/aiomixer/draw.c
128
max_y = getmaxy(stdscr);
usr.bin/aiomixer/draw.c
139
if (max_y > (getmaxy(stdscr) - 3))
usr.bin/aiomixer/draw.c
140
max_y = getmaxy(stdscr) - 3;
usr.bin/aiomixer/main.c
111
((getmaxy(stdscr) - 4) + aio->class_scroll_y)) {
usr.bin/systat/bufcache.c
195
if (i < getmaxy(wnd) - 2) {
usr.bin/systat/iostat.c
140
linesperregion = (getmaxy(wnd) - row - regions + 1) / regions;
usr.bin/systat/iostat.c
152
if (row > getmaxy(wnd) - (linesperregion))
usr.bin/systat/iostat.c
184
if (row > getmaxy(wnd) - linesperregion)
usr.bin/systat/iostat.c
224
if (row > getmaxy(wnd) - linesperregion)
usr.bin/systat/iostat.c
239
if (row > getmaxy(wnd) - (linesperregion + 1))
usr.bin/systat/mbufs.c
91
for (j = 1; j <= getmaxy(wnd); j++) {
usr.bin/systat/mbufs.c
93
for (i = 0; i < getmaxy(wnd); i++)
usr.bin/systat/netstat.c
469
if (lastrow > getmaxy(wnd))
usr.bin/systat/netstat.c
523
if (lastrow < getmaxy(wnd)) {
usr.bin/systat/netstat.c
525
wmove(wnd, getmaxy(wnd), 0); wdeleteln(wnd); /* XXX */
usr.bin/systat/pigs.c
118
if (i > getmaxy(wnd)-1)
usr.bin/systat/pigs.c
119
i = getmaxy(wnd)-1;
usr.bin/systat/ps.c
108
if (i > getmaxy(wnd)-2)
usr.bin/systat/ps.c
109
i = getmaxy(wnd)-1;
usr.sbin/sysinst/main.c
301
mainwin = newwin(getmaxy(stdscr) - 2, getmaxx(stdscr) - 2, 1, 1);