Home
last modified time | relevance | path

Searched refs:_line (Results 1 – 25 of 54) sorted by relevance

123

/titanic_41/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dnewwin.c138 w->_line = (cchar_t **) calloc((size_t) nlines, sizeof (*w->_line)); in __m_newwin()
139 if (w->_line == NULL) in __m_newwin()
151 w->_line[0] = w->_base; in __m_newwin()
154 w->_line[y] = &w->_line[y-1][ncols]; in __m_newwin()
156 w->_line[y][x] = w->_bg; in __m_newwin()
172 w->_line[y] = &parent->_line[dy++][dx]; in __m_newwin()
250 if (w->_line != NULL) { in delwin()
254 free(w->_line); in delwin()
H A Dwscrl.c76 if (!w->_line[row+n][0]._f) { in wscrl()
90 save = w->_line[row + n][first]; in wscrl()
93 w->_line[row + n][first] = save; in wscrl()
94 (void) memcpy(w->_line[row], in wscrl()
95 w->_line[row + n], in wscrl()
126 (void) __m_ptr_move((void **) w->_line, w->_maxy, in wscrl()
H A Dwdelch.c70 width = __m_cc_width(&w->_line[y][x]); in wdelch()
73 (void) memcpy(&w->_line[y][x], &w->_line[y][next], in wdelch()
74 (w->_maxx - next) * sizeof (**w->_line)); in wdelch()
H A Dgetwin.c137 at = w->_line[y][x]._at; in put_cc()
138 co = w->_line[y][x]._co; in put_cc()
141 (void) __m_cc_mbs(&w->_line[y][x], mbs, len); in put_cc()
148 if (w->_line[y][i]._at != at || w->_line[y][i]._co != co) in put_cc()
150 (void) __m_cc_mbs(&w->_line[y][i], mbs, 0); in put_cc()
H A Ddupwin.c88 (void) memcpy(v->_line[i], w->_line[i], in dupwin()
89 v->_maxx * sizeof (**v->_line)); in dupwin()
H A Dwrefresh.c111 (void) memcpy(&ns->_line[ny][nx], &w->_line[wy][wx], in wnoutrefresh()
112 dx * sizeof (**w->_line)); in wnoutrefresh()
121 if (!ns->_line[ny][nx]._f) { in wnoutrefresh()
H A Dwins_wch.c75 (void) memmove(&w->_line[y][x + width], &w->_line[y][x], in __m_cc_ins()
76 (w->_maxx - x - width) * sizeof (**w->_line)); in __m_cc_ins()
92 if (w->_maxx < x + __m_cc_width(&w->_line[y][x])) in __m_cc_ins()
H A Ddoupdate.c249 nptr = &newscr->_line[row][COLS]; in _find_blank_tail()
266 cchar_t *optr = &curscr->_line[row][region.col]; in _writeRegion()
267 cchar_t *nptr = &newscr->_line[row][region.col]; in _writeRegion()
301 cchar_t *optr = &curscr->_line[row][region.col]; in _deleteRegion()
415 cchar_t *nptr = &newscr->_line[row][0]; in _findRegions()
416 cchar_t *optr = &curscr->_line[row][0]; in _findRegions()
728 (void) __m_ptr_move((void **) curscr->_line, in scroll_up()
768 (void) __m_ptr_move((void **) curscr->_line,
909 for (cp = curscr->_line[i], j = 0; j < COLS; ++j, ++cp) in script()
1035 (void) memset(&__m_screen->_curscr->_line[w->_begy + y][w->_begx], in wtouchln_hard()
[all …]
H A Dcopywin.c100 st = s->_line[sminr] + sminc; in copywin()
101 tt = t->_line[tminr] + tminc; in copywin()
117 if (0 < tminc && !t->_line[tminr][tminc]._f) in copywin()
H A Dwinnstr.c64 (void) __m_cc_mbs(&w->_line[y][x], mbs, n); in winnstr()
71 if (__m_cc_mbs(&w->_line[y][x], NULL, 0) < 0) in winnstr()
H A Dwinsdel.c73 (void) __m_ptr_move((void **) w->_line, w->_maxy, in winsdelln()
80 (void) __m_ptr_move((void **) w->_line, w->_maxy, in winsdelln()
H A Dmvwin.c83 w->_line[i] = &parent->_line[dy++][dx]; in mvwin()
H A Dm_cc.c468 for (lp = w->_line[y]; 0 < x; --x) { in __m_cc_first()
484 for (lp = w->_line[y]; ++x < w->_maxx; ) { in __m_cc_next()
501 width = __m_cc_width(&w->_line[y][x]); in __m_cc_islast()
547 cp = &w->_line[y][x++]; in __m_cc_replace()
741 cp = &w->_line[y][x]; in __m_cc_modify()
777 for (cp = w->_line[y], i = 0; x <= lx; ++x, ++i) { in __m_cc_erase_in_line()
809 for (cp = parent->_line[parentY]; x <= lx; ) { in __m_cc_erase_in_line_sub()
927 width = __m_cc_width(&w->_line[y][x]); in __m_cc_expand()
940 cc = w->_line[y][x]; in __m_cc_expand()
/titanic_41/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dnewwin.c130 w->_line = (cchar_t **) calloc((size_t) nlines, sizeof *w->_line);
131 if (w->_line == (cchar_t **) 0)
149 w->_line[y = 0] = w->_base;
152 w->_line[y][x] = w->_bg;
153 w->_line[y+1] = &w->_line[y][x];
167 w->_line[y] = &parent->_line[dy++][dx];
237 if (w->_line != (cchar_t **) 0) {
241 free(w->_line);
H A Dwdelch.c70 width = __m_cc_width(&w->_line[y][x]);
74 &w->_line[y][x], &w->_line[y][next],
75 (w->_maxx - next) * sizeof **w->_line
H A Dgetwin.c144 at = w->_line[y][x]._at;
145 co = w->_line[y][x]._co;
148 (void) __m_cc_mbs(&w->_line[y][x], mbs, len);
155 if (w->_line[y][i]._at != at || w->_line[y][i]._co != co)
157 (void) __m_cc_mbs(&w->_line[y][i], mbs, 0);
H A Ddupwin.c93 v->_line[i], w->_line[i],
94 v->_maxx * sizeof **v->_line
H A Dwrefresh.c113 &ns->_line[ny][nx], &w->_line[wy][wx],
114 dx * sizeof **w->_line
117 if (!ns->_line[ny][nx]._f) {
H A Dwins_wch.c68 &w->_line[y][x + width], &w->_line[y][x],
69 (w->_maxx - x - width) * sizeof **w->_line
85 if (w->_maxx < x + __m_cc_width(&w->_line[y][x]))
H A Dwinnstr.c65 (void) __m_cc_mbs(&w->_line[y][x], mbs, n);
72 if (__m_cc_mbs(&w->_line[y][x], (char *) 0, 0) < 0)
H A Ddoupdate.c260 nptr = &newscr->_line[row][COLS];
276 optr = &curscr->_line[row][col];
277 nptr = &newscr->_line[row][col];
579 (void **) curscr->_line, curscr->_maxy, start, finish, to
624 (void **) curscr->_line, curscr->_maxy, start, finish, to
662 cchar_t **oline = curscr->_line;
663 cchar_t **nline = newscr->_line;
778 for (cp = curscr->_line[i], j = 0; j < COLS; ++j, ++cp)
1070 &array[y], (unsigned char *) w->_line[y],
1071 (size_t) (w->_maxx * sizeof **w->_line)
H A Dcopywin.c111 st = s->_line[sminr] + sminc;
112 tt = t->_line[tminr] + tminc;
133 if (0 < tminc && !t->_line[tminr][tminc]._f)
H A Dm_cc.c460 for (lp = w->_line[y]; 0 < x; --x) {
478 for (lp = w->_line[y]; ++x < w->_maxx; ) {
497 width = __m_cc_width(&w->_line[y][x]);
540 cp = &w->_line[y][x++];
712 for (cp = w->_line[y], i = 0; x < w->_maxx; ++x, ++i) {
729 for (cp = w->_line[y], i = 0; x <= lx; ++x, ++i) {
757 width = __m_cc_width(&w->_line[y][x]);
769 cc = w->_line[y][x];
H A Dwinsdel.c75 (void **) w->_line, w->_maxy,
84 (void **) w->_line, w->_maxy,
H A Dmvwin.c85 w->_line[i] = &parent->_line[dy++][dx];

123