Searched defs:Dstwin (Results 1 - 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | overlap.c | 48 * This routine writes Srcwin on Dstwin. 53 _overlap(WINDOW *Srcwin, WINDOW *Dstwin, int Overlay) argument 60 fprintf(outf, "OVERWRITE(0%o, 0%o);\n", Srcwin, Dstwin); 63 sby = Srcwin->_begy; dby = Dstwin->_begy; 64 sbx = Srcwin->_begx; dbx = Dstwin->_begx; 65 sey = sby + Srcwin->_maxy; dey = dby + Dstwin->_maxy; 66 sex = sbx + Srcwin->_maxx; dex = dbx + Dstwin->_maxx; 78 return (copywin(Srcwin, Dstwin, sby, sbx, dby, dbx, dey, dex, Overlay));
|
H A D | copywin.c | 45 * This routine writes parts of Srcwin onto Dstwin, 55 copywin(WINDOW *Srcwin, WINDOW *Dstwin, argument 63 chtype **_yDst = Dstwin->_y, **_ySrc = Srcwin->_y, 64 bkSrc = Srcwin->_bkgd, atDst = Dstwin->_attrs, 70 fprintf(outf, "copywin(%0.2o, %0.2o);\n", Srcwin, Dstwin); 75 * first offset into curscr the offset the Dstwin knows about. 78 minRowSrc += Dstwin->_yoffset; 84 * 2 - Dstwin has attributes or bkgd that must changed 88 (2 * ((Dstwin->_attrs != A_NORMAL) || 89 (Dstwin [all...] |
Completed in 65 milliseconds