Symbol: newwin
games/atc/graphics.c
132
input = newwin(INPUT_LINES, COLS - PLANE_COLS, LINES - INPUT_LINES, 0);
games/atc/graphics.c
133
credit = newwin(INPUT_LINES, PLANE_COLS, LINES - INPUT_LINES,
games/atc/graphics.c
135
planes = newwin(LINES - INPUT_LINES, PLANE_COLS, 0, COLS - PLANE_COLS);
games/atc/graphics.c
159
radar = newwin(scp->height, scp->width * 2, 0, 0);
games/atc/graphics.c
163
cleanradar = newwin(scp->height, scp->width * 2, 0, 0);
games/boggle/boggle/help.c
62
win = newwin(0, 0, 0, 0);
games/mille/mille.c
83
stdscr = Board = newwin(BOARD_Y, BOARD_X, 0, 0);
games/mille/mille.c
84
Score = newwin(SCORE_Y, SCORE_X, 0, 40);
games/mille/mille.c
85
Miles = newwin(MILES_Y, MILES_X, 17, 0);
games/robots/main.c
168
stdscr = newwin(Y_SIZE, X_SIZE, 0, 0);
games/sail/pl_7.c
131
view_w = newwin(VIEW_Y, VIEW_X, VIEW_T, VIEW_L);
games/sail/pl_7.c
132
slot_w = newwin(SLOT_Y, SLOT_X, SLOT_T, SLOT_L);
games/sail/pl_7.c
133
scroll_w = newwin(SCROLL_Y, SCROLL_X, SCROLL_T, SCROLL_L);
games/sail/pl_7.c
134
stat_w = newwin(STAT_Y, STAT_X, STAT_T, STAT_L);
games/sail/pl_7.c
135
turn_w = newwin(TURN_Y, TURN_X, TURN_T, TURN_L);
games/worm/worm.c
142
stw = newwin(1, COLS-1, 0, 0);
games/worm/worm.c
143
tv = newwin(LINES-1, COLS-1, 1, 0);
lib/libcurses/EXAMPLES/ex1.c
130
stdscr = newwin(YSIZE, XSIZE, 1, 1);
lib/libcurses/PSD.doc/ex1.c
56
stdscr = newwin(YSIZE, XSIZE, 10, 35);
lib/libcurses/PSD.doc/ex2.c
60
stdscr = newwin(YSIZE, XSIZE, 0, 0);
lib/libcurses/curses.h
724
WINDOW *newwin(int, int, int, int);
tests/lib/libcurses/slave/curses_commands.c
2240
report_ptr(newwin(lines, cols, begin_y, begin_x));
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/systat/main.c
214
wload = newwin(1, 0, 3, 20);
usr.bin/talk/init_disp.c
78
my_win.x_win = newwin(my_win.x_nlines, my_win.x_ncols, 0, 0);
usr.bin/talk/init_disp.c
84
his_win.x_win = newwin(his_win.x_nlines, his_win.x_ncols,
usr.bin/talk/init_disp.c
89
line_win = newwin(1, COLS, my_win.x_nlines, 0);
usr.sbin/sysinst/main.c
301
mainwin = newwin(getmaxy(stdscr) - 2, getmaxx(stdscr) - 2, 1, 1);