Home
last modified time | relevance | path

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

12

/titanic_41/usr/src/ucblib/libcurses/
H A Daddch.c52 " lastch = %d\n", y, x, win->_firstch[y], in waddch()
72 " lastch = %d\n", y, x, win->_firstch[y], in waddch()
107 if (win->_firstch[y] == _NOCHANGE) in set_ch()
108 win->_firstch[y] = win->_lastch[y] = (short)x; in set_ch()
109 else if (x < win->_firstch[y]) in set_ch()
110 win->_firstch[y] = (short)x; in set_ch()
115 win->_firstch[y], win->_lastch[y], in set_ch()
116 win->_firstch[y] - win->_ch_off, in set_ch()
H A Dtouchwin.c55 win->_firstch[y], win->_lastch[y]); in touchline()
59 if (win->_firstch[y] == _NOCHANGE) { in touchline()
60 win->_firstch[y] = (short)sx; in touchline()
63 if (win->_firstch[y] > sx) in touchline()
64 win->_firstch[y] = (short)sx; in touchline()
70 win->_firstch[y], win->_lastch[y]); in touchline()
H A Dnewwin.c58 if ((win->_firstch = SMALLOC(nl * sizeof (win->_firstch[0]))) == NULL) { in newwin()
65 free(win->_firstch); in newwin()
71 win->_firstch[i] = _NOCHANGE; in newwin()
78 free(win->_firstch); in newwin()
143 win->_firstch = &orig->_firstch[j]; in _set_subwin_()
H A Drefresh.c98 fprintf(outf, "%d\t%d\t%d\n", wy, win->_firstch[wy], in wrefresh()
101 if (win->_firstch[wy] != _NOCHANGE) in wrefresh()
105 if (win->_firstch[wy] >= win->_ch_off) in wrefresh()
106 win->_firstch[wy] = win->_maxx + in wrefresh()
111 if (win->_lastch[wy] < win->_firstch[wy]) in wrefresh()
112 win->_firstch[wy] = _NOCHANGE; in wrefresh()
115 fprintf(outf, "\t%d\t%d\n", win->_firstch[wy], in wrefresh()
160 wx = win->_firstch[wy] - win->_ch_off; in makech()
H A Ddelwin.c44 free(win->_firstch); in delwin()
/titanic_41/usr/src/lib/libcurses/screen/
H A Ddupwin.c76 if ((new->_firstch = (short *)malloc((unsigned)2 * line_size)) == NULL) in dupwin()
79 win->_lastch = win->_firstch + nlines; in dupwin()
87 free((char *)new->_firstch); in dupwin()
139 (void) memcpy((char *)new->_firstch, (char *)win->_firstch, in dupwin()
H A Dwclrtoeol.c135 win->_firstch[y], win->_lastch[y], win->_firstch[y+1]); in wclrtoeol()
138 if (win->_firstch[y] > x) in wclrtoeol()
140 win->_firstch[y] = (short) x; in wclrtoeol()
H A Dmakenew.c73 if ((win->_firstch = (short *) malloc(2 * nlines * sizeof (short))) in _makenew()
90 win->_lastch = win->_firstch + nlines; in _makenew()
113 (void) memset((char *) win->_firstch, 0, (nlines * sizeof (short))); in _makenew()
H A Dmbaddch.c67 if ((x = (int)(wp - wcp)) < win->_firstch[y]) in _mbclrch()
69 win->_firstch[y] = (short)x; in _mbclrch()
239 if (x < win->_firstch[y]) in _mbaddch()
241 win->_firstch[y] = (short)x; in _mbaddch()
H A Dwhline.c62 if (curx < win->_firstch[cury]) in whline()
63 win->_firstch[cury] = curx; in whline()
H A Dwsyncdown.c64 wbch = win->_firstch; in wsyncdown()
66 pbch = par->_firstch + py; in wsyncdown()
H A Dwsyncup.c61 wbch = win->_firstch; in wsyncup()
63 pbch = par->_firstch+ py; in wsyncup()
H A Dgetwin.c75 save_fch = win->_firstch; in getwin()
80 win->_firstch = save_fch; in getwin()
H A Dmbinsshift.c96 if (x < win->_firstch[y]) in _mbinsshift()
98 win->_firstch[y] = (short)x; in _mbinsshift()
H A Dwaddch.c141 if (x < win->_firstch[y]) in waddch()
142 win->_firstch[y] = x; in waddch()
187 win->_firstch[y], win->_lastch[y]); in waddch()
H A Dwdelch.c101 if (win->_firstch[cury] > curx) in wdelch()
102 win->_firstch[cury] = curx; in wdelch()
H A Dwaddwchnstr.c116 if (my_x1 < win->_firstch[my_y]) in waddwchnstr()
117 win->_firstch[my_y] = my_x1; in waddwchnstr()
H A Dwinsch.c120 if (curx < win->_firstch[cury]) in winsch()
121 win->_firstch[cury] = curx; in winsch()
H A Dwaddnstr.c121 if (curx < win->_firstch[cury]) in waddnstr()
122 win->_firstch[cury] = curx; in waddnstr()
H A Dcopywin.c161 if (minColDst < Dstwin->_firstch[yDst]) in copywin()
163 Dstwin->_firstch[yDst] = (short)minColDst; in copywin()
H A Dwinsnstr.c155 if (win->_firstch[cury] > win->_curx) in winsnstr()
156 win->_firstch[cury] = win->_curx; in winsnstr()
H A Dis_linetou.c52 if (win->_firstch[line] == _INFINITY) in is_linetouched()
H A Dwredrawln.c71 firstch = win->_firstch + begline; in wredrawln()
H A Dwnoutref.c109 bch = win->_firstch; in wnoutrefresh()
114 sbch = _virtscr->_firstch + yorg; in wnoutrefresh()
H A Ddelwin.c96 free((char *)win->_firstch); in delwin()

12