Home
last modified time | relevance | path

Searched refs:firstch (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwredrawln.c60 short *firstch, *efirstch; in wredrawln() local
69 firstch = win->_firstch + begline; in wredrawln()
70 efirstch = firstch + numlines; in wredrawln()
71 while (firstch < efirstch) in wredrawln()
72 *firstch++ = _REDRAW; in wredrawln()
H A Dwtouchln.c58 short *firstch, *lastch, b, e; in wtouchln() local
67 firstch = win->_firstch + y; in wtouchln()
79 for (; n-- > 0; firstch++, lastch++) { in wtouchln()
80 if (changed == -1 || *firstch != _REDRAW) in wtouchln()
81 *firstch = b, *lastch = e; in wtouchln()
H A Dwvline.c50 short *firstch = &(win->_firstch[cury]); in wvline() local
62 for (num_chars += cury; cury < num_chars; cury++, firstch++, in wvline()
65 if (curx < *firstch) in wvline()
66 *firstch = curx; in wvline()