Searched defs:startx (Results 1 - 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libeti/panel/common/ |
H A D | move.c | 43 move_panel(PANEL *panel, int starty, int startx) argument 51 if (mvwin(panel -> win, starty, startx) == ERR) 61 mvwin(panel -> win, starty, startx) == ERR)
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | clrtobot.c | 36 int startx; local 39 startx = win->_curx; 43 for (sp = &win->_y[y][startx]; sp < end; sp++) 53 startx = 0;
|
H A D | overlay.c | 38 int x, y, endy, endx, starty, startx; local 45 startx = max(win1->_begx, win2->_begx); 50 starty, startx, endy, endx); 52 if (starty >= endy || startx >= endx) 58 x = startx - win2->_begx; 59 for (sp = &win1->_y[y1][startx - win1->_begx]; sp < end; sp++) {
|
H A D | overwrite.c | 38 int x, y, endy, endx, starty, startx; local 44 startx = max(win1->_begx, win2->_begx); 47 if (starty >= endy || startx >= endx) 51 starty, startx, endy, endx); 53 x = endx - startx; 55 (void) memmove(&win2->_y[y - win2->_begy][startx - win2->_begx], 56 &win1->_y[y - win1->_begy][startx - win1->_begx], x); 57 (void) touchline(win2, y, startx - win2->_begx,
|
H A D | toucholap.c | 36 int y, endy, endx, starty, startx; local 42 startx = max(win1->_begx, win2->_begx); 47 starty, startx, endy, endx); 55 if (starty >= endy || startx >= endx) 58 startx -= win2->_begx; 63 (void) touchline(win2, y, startx, endx);
|
Completed in 75 milliseconds