Searched refs:win1 (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/ucblib/libcurses/ |
H A D | toucholap.c | 34 touchoverlap(WINDOW *win1, WINDOW *win2) in touchoverlap() argument 39 fprintf(outf, "TOUCHOVERLAP(%0.2o, %0.2o);\n", win1, win2); in touchoverlap() 41 starty = max(win1->_begy, win2->_begy); in touchoverlap() 42 startx = max(win1->_begx, win2->_begx); in touchoverlap() 43 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy); in touchoverlap() 44 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx); in touchoverlap() 49 win1->_begy, win1->_begx, win1->_begy + win1->_maxy, in touchoverlap() 50 win1->_begx + win1->_maxx); in touchoverlap()
|
H A D | overlay.c | 35 overlay(WINDOW *win1, WINDOW *win2) in overlay() argument 42 fprintf(outf, "OVERLAY(%0.2o, %0.2o);\n", win1, win2); in overlay() 44 starty = max(win1->_begy, win2->_begy); in overlay() 45 startx = max(win1->_begx, win2->_begx); in overlay() 46 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy); in overlay() 47 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx); in overlay() 54 y1 = starty - win1->_begy; in overlay() 57 end = &win1->_y[y1][endx - win1->_begx]; in overlay() 59 for (sp = &win1->_y[y1][startx - win1->_begx]; sp < end; sp++) { in overlay()
|
H A D | overwrite.c | 36 overwrite(WINDOW *win1, WINDOW *win2) in overwrite() argument 41 fprintf(outf, "OVERWRITE(%0.2o, %0.2o);\n", win1, win2); in overwrite() 43 starty = max(win1->_begy, win2->_begy); in overwrite() 44 startx = max(win1->_begx, win2->_begx); in overwrite() 45 endy = min(win1->_maxy + win1->_begy, win2->_maxy + win2->_begy); in overwrite() 46 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx); in overwrite() 56 &win1->_y[y - win1->_begy][startx - win1->_begx], x); in overwrite()
|
/titanic_50/usr/src/lib/libcurses/screen/ |
H A D | scr_reset.c | 79 WINDOW *win = NULL, *win1 = NULL; in scr_reset() local 128 ((type == 2) && ((win1 = dupwin(win)) == NULL)) || in scr_reset() 257 if (win1 != NULL) in scr_reset() 258 (void) delwin(win1); in scr_reset() 286 SP->virt_scr = _virtscr = win1; in scr_reset()
|