/titanic_50/usr/src/ucblib/libcurses/ |
H A D | toucholap.c | 42 startx = max(win1->_begx, win2->_begx); 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() 52 win2->_begy, win2->_begx, win2->_begy + win2->_maxy, in touchoverlap() 53 win2->_begx + win2->_maxx); in touchoverlap() 58 startx -= win2->_begx; in touchoverlap() 60 endx -= win2->_begx; in touchoverlap()
|
H A D | overwrite.c | 44 startx = max(win1->_begx, win2->_begx); in overwrite() 46 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx); in overwrite() 55 (void) memmove(&win2->_y[y - win2->_begy][startx - win2->_begx], in overwrite() 56 &win1->_y[y - win1->_begy][startx - win1->_begx], x); in overwrite() 57 (void) touchline(win2, y, startx - win2->_begx, in overwrite() 58 endx - win2->_begx); in overwrite()
|
H A D | overlay.c | 45 startx = max(win1->_begx, win2->_begx); in overlay() 47 endx = min(win1->_maxx + win1->_begx, win2->_maxx + win2->_begx); in overlay() 57 end = &win1->_y[y1][endx - win1->_begx]; in overlay() 58 x = startx - win2->_begx; in overlay() 59 for (sp = &win1->_y[y1][startx - win1->_begx]; sp < end; sp++) { in overlay()
|
H A D | refresh.c | 127 lx -= win->_begx; in wrefresh() 137 win->_curx + win->_begx); in wrefresh() 139 curscr->_curx = win->_curx + win->_begx; in wrefresh() 175 csp = &curscr->_y[wy + win->_begy][wx + win->_begx]; in makech() 192 domvcur(ly, lx, y, wx + win->_begx); in makech() 197 lx = wx + win->_begx; in makech() 207 clsp = ce - curscr->_y[ly] - win->_begx; in makech() 219 lx = wx + win->_begx; in makech() 258 lx = wx + win->_begx; in makech() 261 lx = win->_begx+win->_curx; in makech() [all …]
|
H A D | newwin.c | 111 if (by < orig->_begy || bx < orig->_begx || in subwin() 113 bx + nc > orig->_maxx + orig->_begx) in subwin() 118 nc = orig->_maxx + orig->_begx - bx; in subwin() 138 k = win->_begx - orig->_begx; in _set_subwin_() 185 win->_begx = (short)bx; in makenew() 198 fprintf(outf, "MAKENEW: win->_begx = %d\n", win->_begx); in makenew() 207 if (win->_begx + win->_maxx == COLS) { in _swflags_() 209 if (win->_begx == 0) { in _swflags_()
|
H A D | mvwin.c | 39 dx = bx - win->_begx; in mvwin() 45 win->_begx += dx; in mvwin() 52 if (bx < orig->_begx || win->_maxx + dx > orig->_maxx) in mvwin() 55 win->_begx = (short)bx; in mvwin()
|
/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | copywin.c | 63 tmaxc = min(s->_begx + s->_maxx, t->_begx + t->_maxx) - 1 - t->_begx; in __m_copywin() 73 if (s->_begx < t->_begx) { in __m_copywin() 74 sminc = t->_begx - s->_begx; in __m_copywin() 78 tminc = s->_begx- t->_begx; in __m_copywin()
|
H A D | mvwin.c | 72 parent->_begx + parent->_maxx < bx + w->_maxx) in mvwin() 80 dx = bx - parent->_begx; in mvwin() 87 w->_begx = (short) bx; in mvwin() 106 px += parent->_begx; in mvderwin()
|
H A D | newwin.c | 97 if (begy < parent->_begy || begx < parent->_begx || in __m_newwin() 99 parent->_maxx < (begx-parent->_begx) + ncols) in __m_newwin() 110 ncols = parent->_maxx - (begx - parent->_begx); in __m_newwin() 167 dx = begx - parent->_begx; in __m_newwin() 176 w->_begx = (short) begx; in __m_newwin() 199 w->_begy = w->_begx = 0; in __m_newwin() 276 begx += parent->_begx; in derwin()
|
H A D | wsyncup.c | 69 p->_first[py] = w->_begx + w->_first[y]; in wsyncup() 70 p->_last[py] = w->_begx + w->_last[y]; in wsyncup() 83 p->_curx = w->_begx + w->_curx; in wcursyncup()
|
H A D | wsyncdn.c | 61 w->_first[y] = p->_first[py] - w->_begx; in syncdown() 62 w->_last[y] = p->_last[py] - w->_begx; in syncdown()
|
H A D | wrefresh.c | 103 nx = w->_begx + wx; in wnoutrefresh() 163 w->_refx = w->_begx; in wnoutrefresh() 175 ns->_curx = w->_curx + w->_begx; in wnoutrefresh()
|
/titanic_50/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | copywin.c | 66 tmaxc = min(s->_begx + s->_maxx, t->_begx + t->_maxx) - 1 - t->_begx; 76 if (s->_begx < t->_begx) { 77 sminc = t->_begx - s->_begx; 81 tminc = s->_begx- t->_begx;
|
H A D | mvwin.c | 75 || parent->_begx + parent->_maxx < bx + w->_maxx) 82 dx = bx - parent->_begx; 89 w->_begx = bx; 114 px += parent->_begx;
|
H A D | newwin.c | 93 if (begy < parent->_begy || begx < parent->_begx 95 || parent->_maxx < (begx-parent->_begx) + ncols) 105 ncols = parent->_maxx - (begx - parent->_begx); 162 dx = begx - parent->_begx; 171 w->_begx = (short) begx; 191 w->_begy = w->_begx = 0; 271 begx += parent->_begx;
|
H A D | wsyncup.c | 74 p->_first[py] = w->_begx + w->_first[y]; in wsyncup() 75 p->_last[py] = w->_begx + w->_last[y]; in wsyncup() 95 p->_curx = w->_begx + w->_curx; in wcursyncup()
|
H A D | wsyncdn.c | 58 w->_first[y] = p->_first[py] - w->_begx; in syncdown() 59 w->_last[y] = p->_last[py] - w->_begx; in syncdown()
|
H A D | wrefresh.c | 102 nx = w->_begx + wx; 157 w->_refx = w->_begx; 169 ns->_curx = w->_curx + w->_begx;
|
/titanic_50/usr/src/lib/libcurses/screen/ |
H A D | mouse.c | 119 if (win->_begy > MOUSE_Y_POS || win->_begx > MOUSE_X_POS || in wmouse_position() 121 win->_begx+win->_maxx < MOUSE_X_POS) { in wmouse_position() 124 *x = MOUSE_X_POS - win->_begx; in wmouse_position()
|
H A D | overlap.c | 64 sbx = Srcwin->_begx; dbx = Dstwin->_begx; in _overlap()
|
H A D | makenew.c | 100 win->_begx = (short) begx; in _makenew() 135 fprintf(outf, "MAKENEW: win->_begx = %d\n", win->_begx); in _makenew()
|
H A D | prefresh.c | 157 if ((padwin->_begy == sminy) && (padwin->_begx == sminx) && in _padjust() 171 padwin->_begx = (short)sminx; in _padjust()
|
H A D | getbegyx.c | 56 return (win->_begx); in getbegx()
|
H A D | subwin.c | 50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx)); in subwin()
|
H A D | mvwin.c | 58 win->_begx = (short) bx; in mvwin()
|