Home
last modified time | relevance | path

Searched refs:starty (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/ucblib/libcurses/
H A Doverlay.c36 int x, y, endy, endx, starty, startx; in overlay() local
42 starty = max(win1->_begy, win2->_begy); in overlay()
48 starty, startx, endy, endx); in overlay()
50 if (starty >= endy || startx >= endx) in overlay()
52 y1 = starty - win1->_begy; in overlay()
53 y2 = starty - win2->_begy; in overlay()
54 for (y = starty; y < endy; y++, y1++, y2++) { in overlay()
H A Dtoucholap.c34 int y, endy, endx, starty, startx; in touchoverlap() local
39 starty = max(win1->_begy, win2->_begy); in touchoverlap()
45 starty, startx, endy, endx); in touchoverlap()
53 if (starty >= endy || startx >= endx) in touchoverlap()
55 starty -= win2->_begy; in touchoverlap()
60 for (y = starty; y < endy; y++) in touchoverlap()
H A Doverwrite.c36 int x, y, endy, endx, starty, startx; in overwrite() local
41 starty = max(win1->_begy, win2->_begy); in overwrite()
45 if (starty >= endy || startx >= endx) in overwrite()
49 starty, startx, endy, endx); in overwrite()
52 for (y = starty; y < endy; y++) { in overwrite()
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dmove.c41 move_panel(PANEL *panel, int starty, int startx) in move_panel() argument
49 if (mvwin(panel -> win, starty, startx) == ERR) in move_panel()
59 mvwin(panel -> win, starty, startx) == ERR) in move_panel()