Searched refs:np (Results 126 - 150 of 263) sorted by relevance

1234567891011

/freebsd-9.3-release/sys/net/
H A Dbpf_filter.c92 u_char *cp, *np; local
112 np = mtod(m0, u_char *);
116 ((u_int32_t)np[0] << 16) |
117 ((u_int32_t)np[1] << 8) |
118 (u_int32_t)np[2]);
123 ((u_int32_t)np[0] << 8) |
124 (u_int32_t)np[1]);
130 (u_int32_t)np[0]);
/freebsd-9.3-release/sys/netipx/
H A Dspx.h193 #define ipxtospxpcb(np) ((struct spxpcb *)(np)->ipxp_pcb)
/freebsd-9.3-release/crypto/openssh/
H A Dscp.c917 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
1047 np = namebuf;
1049 np = targ;
1051 exists = stat(np, &stb) == 0;
1062 (void) chmod(np, mode);
1067 if (mkdir(np, mode | S_IRWXU) < 0)
1070 vect[0] = xstrdup(np);
1085 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
1086 bad: run_err("%s: %s", np, strerror(errno));
1142 run_err("%s: truncate: %s", np, strerro
[all...]
/freebsd-9.3-release/contrib/groff/src/include/
H A Dprinter.h75 virtual void draw(int code, int *p, int np, const environment *env);
/freebsd-9.3-release/lib/libc/gen/
H A Dwordexp.c118 char *np, *p; /* Handy pointers */ local
241 if ((np = memchr(p, '\0', nbytes)) == NULL)
243 nbytes -= np - p + 1;
244 p = np + 1;
H A Dgetcap.c576 const char *np, *bp; local
589 np = name;
591 if (*np == '\0')
597 if (*bp++ != *np++)
651 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; local
713 np = nbuf;
717 *np++ = ':';
723 *np++ = *cp;
726 *np = '\0';
/freebsd-9.3-release/usr.bin/finger/
H A Dfinger.c278 char **ap, **nargv, **np, **p; local
289 for (ap = p = argv, np = nargv; *p; ++p)
291 *np++ = *p;
295 *np++ = NULL;
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dgetcap.c658 const char *np, *bp; local
668 np = name;
670 if (*np == '\0') {
676 if (*bp++ != *np++)
729 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
787 np = nbuf;
791 *np++ = ':';
797 *np++ = *cp;
800 *np = '\0';
811 *np
[all...]
/freebsd-9.3-release/sys/fs/nwfs/
H A Dnwfs_subr.c74 struct nwnode *np = VTONW(dvp); local
77 u_int32_t dirent = np->n_fid.f_id;
88 rqp->nr_minrplen = sizeof(np->n_seq);
92 md_get_mem(&rqp->rp, (caddr_t)&np->n_seq, sizeof(np->n_seq), MB_MSYSTEM);
166 * lookup name pointed by cnp in directory dvp and return file info in np.
345 struct nwnode *np=VTONW(vp); local
348 u_int32_t dirent = np->n_fid.f_id;
376 struct nwnode *np=VTONW(vp); local
398 np
[all...]
H A Dnwfs_vfsops.c277 struct nwnode *np; local
355 np = VTONW(vp);
357 np->n_flag |= NVOLUME;
358 nmp->n_root = np;
415 struct nwnode *np = nmp->n_root; local
418 if (np == NULL) return EINVAL;
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_mont.c199 BN_ULONG *ap, *np, *rp, n0, v, *nrp; local
219 np = n->d;
249 v = bn_mul_add_words(rp, np, nl, (BN_ULONG)t1);
252 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2);
290 v = bn_sub_words(rp, ap, np, ri);
361 BN_ULONG *ap, *np, *rp, n0, v, *nrp; local
389 np = n->d;
419 v = bn_mul_add_words(rp, np, nl, (BN_ULONG)t1);
422 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2);
463 v = bn_sub_words(rp, ap, np, r
[all...]
/freebsd-9.3-release/sys/arm/econa/
H A Decona_machdep.c217 #define valloc_pages(var, np) \
218 alloc_pages((var).pv_va, (np)); \
221 #define alloc_pages(var, np) \
223 freemempos += (np * PAGE_SIZE); \
224 memset((char *)(var), 0, ((np) * PAGE_SIZE));
/freebsd-9.3-release/sys/arm/sa11x0/
H A Dassabet_machdep.c238 #define valloc_pages(var, np) \
239 alloc_pages((var).pv_pa, (np)); \
242 #define alloc_pages(var, np) \
244 freemempos += ((np) * PAGE_SIZE);\
245 memset((char *)(var), 0, ((np) * PAGE_SIZE));
/freebsd-9.3-release/sys/arm/xscale/i8134x/
H A Dcrb_machdep.c204 #define valloc_pages(var, np) \
205 alloc_pages((var).pv_pa, (np)); \
208 #define alloc_pages(var, np) \
209 freemempos -= (np * PAGE_SIZE); \
211 memset((char *)(var), 0, ((np) * PAGE_SIZE));
/freebsd-9.3-release/sys/i386/i386/
H A Delan-mmcr.c115 int i, np, ne; local
129 np = ne = 0;
136 np++;
137 if (np > 1)
153 if (np == 0)
/freebsd-9.3-release/usr.sbin/pmccontrol/
H A Dpmccontrol.c138 struct pmcc_op *np; local
165 STAILQ_FOREACH(np, op_list, op_next) {
167 cpu = np->op_cpu;
168 pmc = np->op_pmc;
169 op = np->op_op;
/freebsd-9.3-release/sys/boot/zfs/
H A Dzfs.c592 const char *np; local
596 np = devspec;
597 if (*np != ':')
599 np++;
600 end = strchr(np, ':');
603 sep = strchr(np, '/');
606 memcpy(poolname, np, sep - np);
607 poolname[sep - np] = '\0';
/freebsd-9.3-release/usr.bin/su/
H A Dsu.c159 } np; local
243 np.a = &nargv[i + 3];
543 *np.a-- = "-f";
545 *np.a-- = "-m";
548 *np.a = asthem ? "-su" : iscsh == YES ? "_su" : "su";
554 execv(shell, np.b);
/freebsd-9.3-release/bin/sh/
H A Dparser.c1554 union node *np; local
1556 np = (union node *)stalloc(sizeof (struct nfile));
1558 np->nfile.fd = 1;
1561 np->type = NAPPEND;
1563 np->type = NTOFD;
1565 np->type = NCLOBBER;
1567 np->type = NTO;
1571 np->nfile.fd = 0;
1575 np = (union node *)stalloc(sizeof (struct nhere));
1576 np
[all...]
H A Djobs.c1207 union node *np; local
1280 for (np = n->ncmd.args ; np ; np = np->narg.next) {
1281 cmdtxt(np);
1282 if (np->narg.next)
1285 for (np = n->ncmd.redirect ; np ; np
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dstmt.c2726 case_node_ptr np;
2728 np = *head;
2729 if (np)
2739 while (np)
2741 if (!tree_int_cst_equal (np->low, np->high))
2745 cost += COST_TABLE (TREE_INT_CST_LOW (np->high));
2749 cost += COST_TABLE (TREE_INT_CST_LOW (np->low));
2752 np = np
2710 case_node_ptr np; local
[all...]
/freebsd-9.3-release/bin/ed/
H A Dglbl.c184 unset_active_nodes(line_t *np, line_t *mp) argument
189 for (lp = np; lp != mp; lp = lp->q_forw)
H A Dsub.c41 extract_subst_tail(int *flagp, long *np) argument
45 *flagp = *np = 0;
58 STRTOL(*np, ibufp);
/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clrpcops.c222 struct nfsnode *np = VTONFS(vp); local
237 nfhp = np->n_fhp;
242 namel = (np->n_v4->n4_namelen < 100) ? np->n_v4->n4_namelen : 99;
243 bcopy(NFS4NODENAME(np->n_v4), name, namel);
262 if (np->n_v4 != NULL) {
263 error = nfsrpc_openrpc(nmp, vp, np->n_v4->n4_data,
264 np->n_v4->n4_fhlen, np->n_fhp->nfh_fh,
265 np
1078 struct nfsnode *np; local
1179 struct nfsnode *np = VTONFS(vp); local
1236 struct nfsnode *np = VTONFS(vp); local
1387 struct nfsnode *np = VTONFS(vp); local
1463 struct nfsnode *np = VTONFS(vp); local
1843 struct nfsnode *np; local
2063 struct nfsnode *np; local
2139 struct nfsnode *np; local
2979 struct nfsnode *dnp = VTONFS(vp), *np; local
3676 struct nfsnode *np; local
[all...]
/freebsd-9.3-release/contrib/libpcap/
H A Dnametoaddr.c151 struct netent *np; local
153 if ((np = getnetbyname(name)) != NULL)
154 return np->n_net;

Completed in 166 milliseconds

1234567891011