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

/opensolaris-onvv-gate/usr/src/ucblib/libcurses/
H A Dtoucholap.c30 * Touch, on win2, the part that overlaps with win1.
34 touchoverlap(WINDOW *win1, WINDOW *win2) argument
39 fprintf(outf, "TOUCHOVERLAP(%0.2o, %0.2o);\n", win1, win2);
41 starty = max(win1->_begy, win2->_begy);
42 startx = max(win1->_begx, win2->_begx);
43 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy);
44 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx);
51 fprintf(outf, "TOUCHOVERLAP:win2 (
[all...]
H A Doverwrite.c32 * This routine writes win1 on win2 destructively.
36 overwrite(WINDOW *win1, WINDOW *win2) argument
41 fprintf(outf, "OVERWRITE(%0.2o, %0.2o);\n", win1, win2);
43 starty = max(win1->_begy, win2->_begy);
44 startx = max(win1->_begx, win2->_begx);
45 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy);
46 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx);
55 (void) memmove(&win2
[all...]
H A Doverlay.c31 * This routine writes win1 on win2 non-destructively.
35 overlay(WINDOW *win1, WINDOW *win2) argument
42 fprintf(outf, "OVERLAY(%0.2o, %0.2o);\n", win1, win2);
44 starty = max(win1->_begy, win2->_begy);
45 startx = max(win1->_begx, win2->_begx);
46 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy);
47 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx);
55 y2 = starty - win2
[all...]

Completed in 46 milliseconds