Home
last modified time | relevance | path

Searched refs:_firstch (Results 1 – 25 of 37) sorted by relevance

12

/illumos-gate/usr/src/ucblib/libcurses/
H A Daddch.c50 " lastch = %d\n", y, x, win->_firstch[y], in waddch()
70 " lastch = %d\n", y, x, win->_firstch[y], in waddch()
105 if (win->_firstch[y] == _NOCHANGE) in set_ch()
106 win->_firstch[y] = win->_lastch[y] = (short)x; in set_ch()
107 else if (x < win->_firstch[y]) in set_ch()
108 win->_firstch[y] = (short)x; in set_ch()
113 win->_firstch[y], win->_lastch[y], in set_ch()
114 win->_firstch[y] - win->_ch_off, in set_ch()
H A Dtouchwin.c53 win->_firstch[y], win->_lastch[y]); in touchline()
57 if (win->_firstch[y] == _NOCHANGE) { in touchline()
58 win->_firstch[y] = (short)sx; in touchline()
61 if (win->_firstch[y] > sx) in touchline()
62 win->_firstch[y] = (short)sx; in touchline()
68 win->_firstch[y], win->_lastch[y]); in touchline()
H A Dnewwin.c56 if ((win->_firstch = SMALLOC(nl * sizeof (win->_firstch[0]))) == NULL) { in newwin()
63 free(win->_firstch); in newwin()
69 win->_firstch[i] = _NOCHANGE; in newwin()
76 free(win->_firstch); in newwin()
141 win->_firstch = &orig->_firstch[j]; in _set_subwin_()
H A Drefresh.c96 fprintf(outf, "%d\t%d\t%d\n", wy, win->_firstch[wy], in wrefresh()
99 if (win->_firstch[wy] != _NOCHANGE) in wrefresh()
103 if (win->_firstch[wy] >= win->_ch_off) in wrefresh()
104 win->_firstch[wy] = win->_maxx + in wrefresh()
109 if (win->_lastch[wy] < win->_firstch[wy]) in wrefresh()
110 win->_firstch[wy] = _NOCHANGE; in wrefresh()
113 fprintf(outf, "\t%d\t%d\n", win->_firstch[wy], in wrefresh()
158 wx = win->_firstch[wy] - win->_ch_off; in makech()
H A Ddelwin.c42 free(win->_firstch); in delwin()
/illumos-gate/usr/src/lib/libcurses/screen/
H A Ddupwin.c74 if ((new->_firstch = (short *)malloc((unsigned)2 * line_size)) == NULL) in dupwin()
77 win->_lastch = win->_firstch + nlines; in dupwin()
85 free((char *)new->_firstch); in dupwin()
137 (void) memcpy((char *)new->_firstch, (char *)win->_firstch, in dupwin()
H A Dwclrtoeol.c133 win->_firstch[y], win->_lastch[y], win->_firstch[y+1]); in wclrtoeol()
136 if (win->_firstch[y] > x) in wclrtoeol()
138 win->_firstch[y] = (short) x; in wclrtoeol()
H A Dmakenew.c71 if ((win->_firstch = (short *) malloc(2 * nlines * sizeof (short))) in _makenew()
88 win->_lastch = win->_firstch + nlines; in _makenew()
111 (void) memset((char *) win->_firstch, 0, (nlines * sizeof (short))); in _makenew()
H A Dmbaddch.c65 if ((x = (int)(wp - wcp)) < win->_firstch[y]) in _mbclrch()
67 win->_firstch[y] = (short)x; in _mbclrch()
237 if (x < win->_firstch[y]) in _mbaddch()
239 win->_firstch[y] = (short)x; in _mbaddch()
H A Dwhline.c60 if (curx < win->_firstch[cury]) in whline()
61 win->_firstch[cury] = curx; in whline()
H A Dwsyncdown.c62 wbch = win->_firstch; in wsyncdown()
64 pbch = par->_firstch + py; in wsyncdown()
H A Dwsyncup.c59 wbch = win->_firstch; in wsyncup()
61 pbch = par->_firstch+ py; in wsyncup()
H A Dmbinsshift.c94 if (x < win->_firstch[y]) in _mbinsshift()
96 win->_firstch[y] = (short)x; in _mbinsshift()
H A Dgetwin.c73 save_fch = win->_firstch; in getwin()
78 win->_firstch = save_fch; in getwin()
H A Dwaddch.c140 if (x < win->_firstch[y]) in waddch()
141 win->_firstch[y] = x; in waddch()
189 win->_firstch[y], win->_lastch[y]); in waddch()
H A Dwdelch.c99 if (win->_firstch[cury] > curx) in wdelch()
100 win->_firstch[cury] = curx; in wdelch()
H A Dwinsch.c118 if (curx < win->_firstch[cury]) in winsch()
119 win->_firstch[cury] = curx; in winsch()
H A Dwaddwchnstr.c114 if (my_x1 < win->_firstch[my_y]) in waddwchnstr()
115 win->_firstch[my_y] = my_x1; in waddwchnstr()
H A Dwaddnstr.c119 if (curx < win->_firstch[cury]) in waddnstr()
120 win->_firstch[cury] = curx; in waddnstr()
H A Dcopywin.c159 if (minColDst < Dstwin->_firstch[yDst]) in copywin()
161 Dstwin->_firstch[yDst] = (short)minColDst; in copywin()
H A Dwinsnstr.c153 if (win->_firstch[cury] > win->_curx) in winsnstr()
154 win->_firstch[cury] = win->_curx; in winsnstr()
H A Dis_linetou.c50 if (win->_firstch[line] == _INFINITY) in is_linetouched()
H A Dwredrawln.c69 firstch = win->_firstch + begline; in wredrawln()
H A Dwnoutref.c107 bch = win->_firstch; in wnoutrefresh()
112 sbch = _virtscr->_firstch + yorg; in wnoutrefresh()
H A Ddelwin.c94 free((char *)win->_firstch); in delwin()

12