HomeSort by: relevance | last modified time | path
    Searched defs:np (Results 1 - 25 of 162) sorted by relevancy

1 2 3 4 5 6 7

  /src/lib/libcurses/
delwin.c 53 WINDOW *wp, *np; local in function:delwin
77 np = wp->nextp;
79 wp = np;
copywin.c 59 nschar_t *np; local in function:copywin
127 np = sp->nsp;
128 if (np) {
129 while (np && cc.elements <=
131 cc.vals[cc.elements++] = np->ch;
132 np = np->next;
in_wch.c 88 nschar_t *np; local in function:win_wch
97 np = lp->nsp;
98 if (np) {
100 wcval->vals[wcval->elements++] = np->ch;
101 np = np-> next;
102 } while (np);
cur_hash.c 72 const nschar_t *np; local in function:__hash_line
79 for (np = cp->nsp; np != NULL; np = np->next)
80 h = __hash_more(&np->ch, sizeof(np->ch), h);
in_wchstr.c 128 nschar_t *np; local in function:win_wchnstr
150 np = start->nsp;
151 if (np) {
153 wcp->vals[wcp->elements++] = np->ch;
154 np = np->next;
155 } while (np);
delch.c 113 nschar_t *np, *tnp; local in function:wdelch
124 np = temp1->nsp;
125 if (np) {
126 while (np) {
127 tnp = np->next;
128 free(np);
129 np = tnp;
ins_wch.c 91 nschar_t *np, *tnp; local in function:wins_wch
161 np = temp1->nsp;
162 if (np) {
163 while (np) {
164 tnp = np->next;
165 free(np);
166 np = tnp;
190 np = malloc(sizeof(nschar_t));
191 if (!np)
193 np->ch = wch->vals[i]
    [all...]
insstr.c 150 nschar_t *np, *tnp; local in function:winsnstr
171 np = temp1->nsp;
172 if (np){
173 while (np) {
174 tnp = np->next;
175 free(np);
176 np = tnp;
  /src/usr.bin/mail/
v7.local.c 91 const char *np; local in function:username
94 if ((np = getenv("USER")) != NULL)
95 return np;
96 if ((np = getname(uid = getuid())) != NULL)
97 return np;
  /src/usr.bin/ctags/
tree.c 63 NODE *np; local in function:pfnote
68 if (!(np = (NODE *)malloc(sizeof(NODE)))) {
73 if (!(head = np = (NODE *)malloc(sizeof(NODE))))
87 if (!(np->entry = strdup(name)))
89 np->file = curfile;
90 np->lno = ln;
91 np->left = np->right = 0;
92 if (!(np->pat = strdup(lbuf)))
95 head = np;
    [all...]
  /src/usr.bin/chpass/
field.c 101 char *np; local in function:p_uid
112 id = strtoul(p, &np, 10);
117 if (*np || id > UID_MAX) {
131 char *np; local in function:p_gid
146 id = strtoul(p, &np, 10);
151 if (*np || id > GID_MAX) {
  /src/bin/csh/
hist.c 56 struct Hist *hp, *np; local in function:savehist
77 for (hp = &Histlist; (np = hp->Hnext) != NULL;)
78 if (eventno - np->Href >= histlen || histlen == 0)
79 hp->Hnext = np->Hnext, hfree(np);
81 hp = np;
103 struct Hist *np; local in function:enthist
114 np = xmalloc(sizeof(*np));
115 np->Hnum = np->Href = event
    [all...]
  /src/lib/libc/db/recno/
rec_get.c 130 void *np = realloc(t->bt_rdata.data, t->bt_reclen); local in function:__rec_fpipe
131 if (np == NULL)
133 t->bt_rdata.data = np;
199 void *np = realloc(t->bt_rdata.data, tot); local in function:__rec_vpipe
200 if (np == NULL)
203 t->bt_rdata.data = np;
236 void *np = realloc(t->bt_rdata.data, t->bt_reclen); local in function:__rec_fmap
237 if (np == NULL)
239 t->bt_rdata.data = np;
rec_put.c 90 void *np = realloc(t->bt_rdata.data, t->bt_reclen); local in function:__rec_put
91 if (np == NULL)
93 t->bt_rdata.data = np;
  /src/sys/arch/ia64/stand/efi/libefi/
devicename.c 99 const char *np; local in function:efi_parsedev
117 np = (devspec + strlen(dv->dv_name));
131 if (*np && (*np != ':')) {
132 unit = strtol(np, &cp, 10); /* next comes the unit number */
133 if (cp == np) {
138 np = cp + 1;
139 slice = strtol(np, &cp, 10);
140 if (cp == np) {
174 if (*np && (*np != ':'))
    [all...]
  /src/sys/arch/ia64/stand/ia64/ski/
devicename.c 95 const char *np; local in function:ski_parsedev
113 np = (devspec + strlen(dv->dv_name));
126 if (*np && (*np != ':')) {
127 unit = strtol(np, &cp, 10); /* next comes the unit number */
128 if (cp == np) {
133 np = cp + 1;
134 slice = strtol(np, &cp, 10);
135 if (cp == np) {
169 if (*np && (*np != ':'))
    [all...]
  /src/sys/lib/libsa/
ls.c 176 lsentry_t *n, **np; local in function:lsadd
192 for (np = names; *np; np = &(*np)->e_next) {
193 if (strcmp(n->e_name, (*np)->e_name) < 0)
196 n->e_next = *np;
197 *np = n;
  /src/usr.sbin/acpitools/amldb/
debug.c 77 char *np, *ep; local in function:aml_dbgr
246 np = ptr;
253 if (np == ep) {
  /src/usr.sbin/gspa/gspa/
gsp_lex.c 188 const char **np; local in function:str_match
190 for( np = names; *np != NULL; ++np )
191 if( strcmp(id, *np) == 0 )
192 return np - names;
  /src/usr.sbin/sysinst/
txtwalk.c 130 char *np; local in function:process
159 i = strtoul(p, &np, 10);
160 if (p == np)
162 p = np;
205 char *np; local in function:finddata
233 i = strtoul(line, &np, 10);
234 if (line == np)
238 line = np;
  /src/games/hunt/huntd/
draw.c 81 PLAYER *np; local in function:drawstatus
109 for (i = STAT_PLAY_ROW + 1, np = Player; np < End_player; np++) {
111 np->p_ident->i_score,
112 stat_char(np), np->p_ident->i_name,
113 np->p_ident->i_team);
121 for (i = STAT_MON_ROW + 1, np = Monitor; np < End_monitor; np++)
291 PLAYER *np; local in function:showstat
    [all...]
  /src/lib/libc/rpc/
getnetpath.c 251 char *np; /* netpath pointer */ local in function:_get_next_token
280 while ((np = strchr(ep, '\\')) != 0) {
281 if (np[1] == '\\')
282 np++;
283 strcpy(np, (ep = &np[1])); /* XXX: overlapping string copy */
  /src/sbin/mount_qemufwcfg/
virtdir.c 75 const char *np; local in function:normalise
79 for (pp = path, np = name, done = 0 ; !done &&
81 (size_t)(np - name) <= namelen; ) {
82 switch (*np) {
85 *pp++ = *np;
87 np += 1;
93 *pp++ = *np++;
  /src/sbin/wsconsctl/
keyboard.c 92 struct wscons_keymap *op, *np; local in function:diff_kmap
96 np = nmap->map + u;
97 if (op->command == np->command &&
98 op->group1[0] == np->group1[0] &&
99 op->group1[1] == np->group1[1] &&
100 op->group2[0] == np->group2[0] &&
101 op->group2[1] == np->group2[1]) {
102 np->command = KS_voidSymbol;
103 np->group1[0] = KS_voidSymbol;
104 np->group1[1] = KS_voidSymbol
    [all...]
  /src/sys/arch/amiga/dev/
gvpio.c 187 struct gvpcom_int_hdl *np; local in function:gvp_com_intr
199 for (np = sc->sc_comhdls.lh_first; np != NULL;
200 np = np->next.le_next) {
202 (*np->f)(np->p);

Completed in 20 milliseconds

1 2 3 4 5 6 7