Symbol: getmaxx
games/dab/ttyscrn.cc
200
tx = getmaxx(stdscr);
lib/libcurses/curses.h
621
#define getmaxyx(w, y, x) (y) = getmaxy(w), (x) = getmaxx(w)
lib/libcurses/curses.h
678
int getmaxx(WINDOW *);
lib/libform/post.c
62
|| (cols > getmaxx(form->scrwin)))) {
lib/libmenu/internals.c
548
menu->col_width = getmaxx(menu->scrwin) / menu->cols;
tests/lib/libcurses/slave/curses_commands.c
1559
report_int(getmaxx(win));
usr.bin/aiomixer/draw.c
144
max_y, getmaxx(stdscr));
usr.bin/aiomixer/draw.c
270
(getmaxx(control->widgetpad) - 11)) / AUDIO_MAX_GAIN;
usr.bin/aiomixer/draw.c
277
nchars = getmaxx(control->widgetpad) - 11 - nchars;
usr.bin/aiomixer/draw.c
316
getmaxx(aio->header) - (int)sizeof("NetBSD audio mixer"),
usr.bin/aiomixer/draw.c
334
aio->header = newwin(1, getmaxx(stdscr), 0, 0);
usr.bin/aiomixer/draw.c
338
aio->classbar = newwin(2, getmaxx(stdscr), 1, 0);
usr.bin/aiomixer/draw.c
346
getmaxx(stdscr));
usr.bin/aiomixer/draw.c
362
control->height, getmaxx(stdscr),
usr.bin/aiomixer/draw.c
369
wresize(class->widgetpad, class->height, getmaxx(stdscr));
usr.bin/aiomixer/draw.c
372
aio->last_max_x = getmaxx(stdscr);
usr.bin/aiomixer/draw.c
383
max_x = getmaxx(stdscr);
usr.bin/systat/iostat.c
131
#define DRIVESPERLINE ((getmaxx(wnd) + 1) / COLWIDTH)
usr.bin/systat/iostat.c
150
if (col + COLWIDTH - 1 > getmaxx(wnd)) {
usr.bin/systat/iostat.c
237
if (col + COLWIDTH - 1 > getmaxx(wnd)) {
usr.sbin/sysinst/disks.c
940
max_desc_len = getmaxx(stdscr) - 8;
usr.sbin/sysinst/main.c
301
mainwin = newwin(getmaxy(stdscr) - 2, getmaxx(stdscr) - 2, 1, 1);