Searched refs:win2 (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/lib/libcurses/
H A Doverwrite.c49 * Writes win1 on win2 destructively.
52 overwrite(const WINDOW *win1, WINDOW *win2) argument
54 __CTRACE(__CTRACE_WINDOW, "overwrite: (%p, %p);\n", win1, win2);
55 return copywin(win1, win2,
56 win2->begy - win1->begy, win2->begx - win1->begx,
57 0, 0, win2->maxy - 1, win2->maxx - 1, FALSE);
H A Doverlay.c48 * Writes win1 on win2 non-destructively.
51 overlay(const WINDOW *win1, WINDOW *win2) argument
54 __CTRACE(__CTRACE_WINDOW, "overlay: (%p, %p);\n", win1, win2);
55 return copywin(win1, win2,
56 win2->begy - win1->begy, win2->begx - win1->begx,
57 0, 0, win2->maxy - 1, win2->maxx - 1, TRUE);
H A Dtoucholap.c46 * Touch, on win2, the part that overlaps with win1.
49 touchoverlap(WINDOW *win1, WINDOW *win2) argument
53 __CTRACE(__CTRACE_WINDOW, "touchoverlap: (%p, %p);\n", win1, win2);
54 starty = max(win1->begy, win2->begy);
55 startx = max(win1->begx, win2->begx);
56 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begy);
57 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
63 __CTRACE(__CTRACE_WINDOW, "touchoverlap: win2 (
[all...]
/netbsd-current/tests/net/icmp/
H A Dt_ping.c70 bool win, win2; local
104 win2 = netcfg_rump_pingtest("1.1.1.30", 500);
110 if (win2)
/netbsd-current/tests/lib/libcurses/slave/
H A Dcurses_commands.c2680 ARG_WINDOW(win2);
2683 report_return(touchoverlap(win1, win2));

Completed in 190 milliseconds