Lines Matching defs:orig
50 * orig: the original window
57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx)
67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 ||
68 (bx + nc) > orig->_maxx)
71 nc = orig->_maxx - bx;
73 num_lines = orig->_maxy - by;
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
77 bx + orig->_begx)) == NULL)
85 win->_bkgd = orig->_bkgd;
86 win->_attrs = orig->_attrs;
88 o_y = orig->_y;
95 o_y16 = orig->_y16;
105 win->_yoffset = orig->_yoffset;
108 win->_parent = orig;