/src/lib/libcurses/ |
add_wch.c | 96 __LINE *lnp = NULL; local in function:wadd_wch 111 lnp = win->alines[y]; 112 return _cursesi_addwchar(win, &lnp, &(win->cury), &(win->curx), wch, 1);
|
addbytes.c | 347 _cursesi_addwchar(WINDOW *win, __LINE **lnp, int *y, int *x, 383 (*lnp)->flags &= ~__ISPASTEOL; 397 if ((*lnp)->flags & __ISPASTEOL) { 430 (*lnp)->flags |= __ISDIRTY; 432 if (newx < *(*lnp)->firstchp) 433 *(*lnp)->firstchp = newx; 435 if (newx > *(*lnp)->lastchp) 436 *(*lnp)->lastchp = newx; 441 if (char_interp && ((*lnp)->flags & __ISPASTEOL)) { 443 (*lnp)->flags &= ~__ISPASTEOL [all...] |
insstr.c | 148 __LINE *lnp; local in function:winsnstr 210 lnp = win->alines[win->cury]; 211 lnp->flags |= __ISDIRTY; 212 if (win->ch_off < *lnp->firstchp) 213 *lnp->firstchp = win->ch_off; 214 if (win->ch_off + win->maxx - 1 > *lnp->lastchp) 215 *lnp->lastchp = win->ch_off + win->maxx - 1;
|
add_wchstr.c | 143 __LINE *lnp; local in function:wadd_wchnstr 167 lnp = win->alines[y]; 191 lnp->flags |= __ISDIRTY; 193 if (newx < *lnp->firstchp) 194 *lnp->firstchp = newx; 294 lnp->flags |= __ISDIRTY; 296 if (newx > *lnp->lastchp) 297 *lnp->lastchp = newx;
|
ins_wch.c | 89 __LINE *lnp; local in function:wins_wch 137 lnp = win->alines[y]; 147 lnp->flags |= __ISDIRTY; 149 if (newx < *lnp->firstchp) 150 *lnp->firstchp = newx; 211 if (newx > *lnp->lastchp) 212 *lnp->lastchp = newx;
|
ins_wstr.c | 134 __LINE *lnp; local in function:wins_nwstr 285 lnp = win->alines[y]; 293 lnp->flags |= __ISDIRTY; 295 if (newx < *lnp->firstchp) 296 *lnp->firstchp = newx; 369 lnp = win->alines[y]; 373 _cursesi_addwchar(win, &lnp, &y, &x, &cc, 0); 418 if (newx > *lnp->lastchp) 419 *lnp->lastchp = newx;
|
/src/usr.bin/xlint/lint1/ |
tree.c | 1045 balance(op_t op, tnode_t **lnp, tnode_t **rnp) 1048 tspec_t lt = (*lnp)->tn_type->t_tspec; 1058 && is_integer(lt) && (*lnp)->tn_op != CON 1061 warning(379, expr_type_name(*lnp), 1065 *lnp = apply_usual_arithmetic_conversions(op, *lnp, t); 1070 unsigned lw = width_in_bits((*lnp)->tn_type); 1073 *lnp = convert(NOOP, 0, (*rnp)->tn_type, *lnp); 1075 *rnp = convert(NOOP, 0, (*lnp)->tn_type, *rnp) [all...] |