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

  /src/lib/libcurses/
add_wch.c 96 __LINE *lnp = NULL; local
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
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
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
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
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/external/gpl2/groff/dist/src/preproc/eqn/
lex.cpp 419 int file_input::get_location(char **fnp, int *lnp)
422 *lnp = lineno;
471 int top_input::get_location(char **fnp, int *lnp)
474 *lnp = lineno;
584 int get_location(char **fnp, int *lnp)
587 if (p->get_location(fnp, lnp))
  /src/external/gpl2/groff/dist/src/preproc/pic/
lex.cpp 126 int file_input::get_location(const char **fnp, int *lnp)
129 *lnp = lineno;
244 static int get_location(const char **fnp, int *lnp);
348 int input_stack::get_location(const char **fnp, int *lnp)
351 if (p->get_location(fnp, lnp))
1665 int simple_file_input::get_location(const char **fnp, int *lnp)
1668 *lnp = lineno;
  /src/external/gpl3/binutils/dist/gprofng/src/
DwarfLib.cc 111 DwrLine *lnp = get (i); local
113 (long long) i, (long long) lnp->address, (long long) lnp->file,
114 (long long) lnp->line, (long long) lnp->column);
1448 DwrLine *lnp = new DwrLine; local
1450 lnp->file = file;
1451 lnp->line = line;
1452 lnp->column = column;
1453 lnp->address = address
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
DwarfLib.cc 111 DwrLine *lnp = get (i); local
113 (long long) i, (long long) lnp->address, (long long) lnp->file,
114 (long long) lnp->line, (long long) lnp->column);
1448 DwrLine *lnp = new DwrLine; local
1450 lnp->file = file;
1451 lnp->line = line;
1452 lnp->column = column;
1453 lnp->address = address
    [all...]
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_parser.c 2570 dt_node_t *lnp; local
2612 for (lnp = yypcb->pcb_list; lnp->dn_link != NULL; lnp = lnp->dn_link)
2615 lnp->dn_link = dnp->dn_provider->pv_nodes;
2623 dt_node_program(dt_node_t *lnp)
2626 dnp->dn_list = lnp;
3800 dt_node_t *lnp; local
3876 lnp = dnp->dn_link
    [all...]
  /src/usr.bin/xlint/lint1/
tree.c 1109 balance(op_t op, tnode_t **lnp, tnode_t **rnp)
1112 tspec_t lt = (*lnp)->tn_type->t_tspec;
1122 && is_integer(lt) && (*lnp)->tn_op != CON
1125 warning(379, expr_type_name(*lnp),
1129 *lnp = apply_usual_arithmetic_conversions(op, *lnp, t);
1134 unsigned lw = width_in_bits((*lnp)->tn_type);
1137 *lnp = convert(NOOP, 0, (*rnp)->tn_type, *lnp);
1139 *rnp = convert(NOOP, 0, (*lnp)->tn_type, *rnp)
    [all...]

Completed in 48 milliseconds