HomeSort by: relevance | last modified time | path
    Searched refs:firstchp (Results 1 - 14 of 14) sorted by relevancy

  /src/lib/libcurses/
touchwin.c 188 if (*wlp->firstchp >= win->ch_off &&
189 *wlp->firstchp < win->maxx + win->ch_off)
190 *wlp->firstchp = win->maxx + win->ch_off;
239 *win->alines[y]->firstchp, *win->alines[y]->lastchp);
245 /* firstchp/lastchp are shared between parent window and sub-window. */
246 if (*win->alines[y]->firstchp > sx)
247 *win->alines[y]->firstchp = sx;
251 *win->alines[y]->firstchp, *win->alines[y]->lastchp);
mvwin.c 83 if (*plp->firstchp > x)
84 *plp->firstchp = x;
88 "mvderwin: firstchp = %d, lastchp = %d\n",
89 *plp->firstchp, *plp->lastchp);
chgat.c 83 if (x + win->ch_off < *lp->firstchp)
84 *lp->firstchp = x + win->ch_off;
addbytes.c 276 *y, *x, *win->alines[*y]->firstchp, *win->alines[*y]->lastchp);
297 * firstchp/lastchp are shared between
300 if (newx < *(*lp)->firstchp)
301 *(*lp)->firstchp = newx;
306 *(*lp)->firstchp, *(*lp)->lastchp,
307 *(*lp)->firstchp - win->ch_off,
336 *y, *x, *win->alines[*y]->firstchp, *win->alines[*y]->lastchp);
432 if (newx < *(*lnp)->firstchp)
433 *(*lnp)->firstchp = newx;
475 if (newx < *(*lnp)->firstchp)
    [all...]
insstr.c 212 if (win->ch_off < *lnp->firstchp)
213 *lnp->firstchp = win->ch_off;
clrtoeol.c 122 *win->alines[y]->firstchp, *win->alines[y]->lastchp);
refresh.c 242 wy, *wlp->firstchp, *wlp->lastchp, wlp->flags);
253 _wintype, dy_off, *dwlp->firstchp, *dwlp->lastchp,
269 if ((*wlp->firstchp < maxx + swin->ch_off &&
272 (*dwlp->firstchp < dwin->maxx + dwin->ch_off &&
286 if (*wlp->firstchp - swin->ch_off > 0) {
287 wx += *wlp->firstchp - swin->ch_off;
288 x_off += *wlp->firstchp - swin->ch_off;
400 *wlp->firstchp, *wlp->lastchp);
404 *dwlp->firstchp, *dwlp->lastchp);
408 if (*vlp->firstchp >
    [all...]
add_wchstr.c 193 if (newx < *lnp->firstchp)
194 *lnp->firstchp = newx;
ins_wch.c 149 if (newx < *lnp->firstchp)
150 *lnp->firstchp = newx;
ins_wstr.c 295 if (newx < *lnp->firstchp)
296 *lnp->firstchp = newx;
color.c 690 * firstchp/lastchp are shared
694 if (*lp->firstchp > x)
695 *lp->firstchp = x;
705 *win->alines[y]->firstchp,
newwin.c 247 lp->firstchp = &olp->firstch;
335 lp->firstchp = &lp->firstch;
resize.c 314 lp->firstchp = &lp->firstch;
331 lp->firstchp = &olp->firstch;
curses_private.h 95 int *firstchp, *lastchp; /* First and last chngd columns ptrs */ member in struct:__line

Completed in 46 milliseconds