Searched refs:np (Results 226 - 250 of 572) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/games/hack/
H A Dhack.unix.c173 char *np;
177 (np = strrchr(name, '/')) ? np+1 : name);
189 const char *np, *path; local
195 if ((np = strchr(path, ':')) == NULL)
196 np = path + strlen(path); /* point to end str */
197 if (np - path <= 1) /* %% */
202 (int)(np - path), path, name);
206 if (*np == '\0')
208 path = np
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/
H A Dansi2knr.c396 char *np = p; local
398 for (;; p = --np) {
399 if (*np == '\n' && np[-1] == '\r')
400 --np;
401 for (; np > limit && np[-1] != '\r' && np[-1] != '\n'; --np)
402 if (np[
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Ddiv_q.c32 N = {np,nn}
49 If a caller does not care about the value of {np,nn+1} after calling this
50 function, it should pass np also for the scratch argument. This function
69 benefits from np=scratch, and it could perhaps even tolerate qp=np,
91 mp_srcptr np, mp_size_t nn,
105 ASSERT (! MPN_OVERLAP_P (qp, nn - dn + 1, np, nn));
107 ASSERT (MPN_SAME_OR_SEPARATE_P (np, scratch, nn));
113 mpn_divrem_1 (qp, 0L, np, nn, dp[dn - 1]);
130 cy = mpn_lshift (new_np, np, n
90 mpn_div_q(mp_ptr qp, mp_srcptr np, mp_size_t nn, mp_srcptr dp, mp_size_t dn, mp_ptr scratch) argument
[all...]
H A Dmu_bdiv_q.c1 /* mpn_mu_bdiv_q(qp,np,nn,dp,dn,tp) -- Compute {np,nn} / {dp,dn} mod B^nn.
40 /* N = {np,nn}
60 mp_srcptr np, mp_size_t nn,
102 MPN_COPY (rp, np, dn);
103 np += dn;
135 cy = mpn_sub_nc (rp + dn - in, np, tp + dn, in, cy);
136 np += in;
170 mpn_sub_nc (rp + dn - in, np, tp + dn, qn - (dn - in), cy);
192 mpn_mullo_n (qp, np, i
59 mpn_mu_bdiv_q(mp_ptr qp, mp_srcptr np, mp_size_t nn, mp_srcptr dp, mp_size_t dn, mp_ptr scratch) argument
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dansi2knr.c396 char *np = p; local
398 for (;; p = --np) {
399 if (*np == '\n' && np[-1] == '\r')
400 --np;
401 for (; np > limit && np[-1] != '\r' && np[-1] != '\n'; --np)
402 if (np[
[all...]
H A Dget_d.c92 mp_size_t np, i; local
103 np = (nbits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS;
104 MPFR_ASSERTD ( np <= MPFR_LIMBS_PER_DOUBLE );
114 for (i = 1 ; i < np ; i++)
/netbsd-6-1-5-RELEASE/usr.bin/tsort/
H A Dtsort.c369 NODE **np; local
373 for (np = n->n_arcs, i = n->n_narcs; --i >= 0; np++)
374 --(*np)->n_refcnt;
386 NODE **np; local
397 for (np = from->n_arcs, i = from->n_narcs; --i >= 0; np++) {
398 cycle_buf[depth] = *np;
399 if (*np == to) {
406 if ((*np)
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_args.c55 const char *np; local
97 INT2CHAR(sp, argv[0]->bp, argv[0]->len, np, nlen);
98 if ((*ap = v_strdup(sp, np, nlen)) == NULL)
138 const char *np; local
150 INT2CHAR(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len + 1, np, nlen);
151 if ((frp = file_add(new, np)) == NULL ||
313 const char *np; local
328 np, nlen);
329 if ((*ap = v_strdup(sp, np, nlen)) == NULL)
H A Dex_edit.c55 const char *np; local
78 np, nlen);
79 if ((frp = file_add(sp, np)) == NULL)
83 set_alt_name(sp, np);
H A Dex_filter.c35 runcmd(SCR *sp, const char *np, int* input, int *output) argument
72 execl(O_STR(sp, O_SHELL), name, "-c", np, (char *)NULL); local
101 const char *np; local
150 INT2SYS(sp, cmd, STRLEN(cmd)+1, np, nlen);
151 utility_pid = runcmd(sp, np, input, output);
286 uwait: INT2CHAR(sp, cmd, STRLEN(cmd) + 1, np, nlen);
287 return (proc_wait(sp, (long)utility_pid, np,
/netbsd-6-1-5-RELEASE/dist/smbfs/lib/smb/
H A Drap.c59 char *np; local
85 len *= strtoul(s, &np, 10);
86 s = np;
96 char *np; local
115 len *= strtoul(s, &np, 10);
116 s = np;
126 char *np; local
146 len *= strtoul(s, &np, 10);
147 s = np;
/netbsd-6-1-5-RELEASE/libexec/getty/
H A Dmain.c449 char *np; local
474 np = name;
512 np >= &name[LOGIN_NAME_MAX - 1]) {
513 *np = '\0';
522 if (np > name) {
523 np--;
536 else if (np > name)
540 np = name;
546 *np++ = c;
555 *np
[all...]
/netbsd-6-1-5-RELEASE/sys/fs/smbfs/
H A Dsmbfs_subr.c264 smb_fphelp(struct mbchain *mbp, struct smb_vc *vcp, struct smbnode *np, argument
267 struct smbmount *smp= np->n_mount;
273 while (np->n_parent) {
278 *npp++ = np;
279 np = VTOSMB(np->n_parent);
282 np = *--npp;
286 error = smb_put_dmem(mbp, vcp, np->n_name, np->n_nmlen, caseopt);
H A Dsmbfs_node.h82 #define SMBTOV(np) ((struct vnode *)(np)->n_vnode)
/netbsd-6-1-5-RELEASE/dist/ipf/
H A Dip_fil_compat.c1197 ipnat_t *np = (ipnat_t *)current; local
1199 np->in_next = old->in_next;
1200 np->in_rnext = old->in_rnext;
1201 np->in_prnext = old->in_prnext;
1202 np->in_mnext = old->in_mnext;
1203 np->in_pmnext = old->in_pmnext;
1204 np->in_tqehead[0] = old->in_tqehead[0];
1205 np->in_tqehead[1] = old->in_tqehead[1];
1206 np->in_ifps[0] = old->in_ifps[0];
1207 np
2081 ipnat_t *np = (ipnat_t *)current; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dist/ipf/netinet/
H A Dip_fil_compat.c1191 ipnat_t *np = (ipnat_t *)current; local
1193 np->in_next = old->in_next;
1194 np->in_rnext = old->in_rnext;
1195 np->in_prnext = old->in_prnext;
1196 np->in_mnext = old->in_mnext;
1197 np->in_pmnext = old->in_pmnext;
1198 np->in_tqehead[0] = old->in_tqehead[0];
1199 np->in_tqehead[1] = old->in_tqehead[1];
1200 np->in_ifps[0] = old->in_ifps[0];
1201 np
2075 ipnat_t *np = (ipnat_t *)current; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/pcc/dist/pcc/f77/fcom/
H A Dexec.c204 struct bigblock *np;
207 np = lp->b_prim.namep;
208 if(np->vclass == CLUNKNOWN)
209 np->vclass = CLPROC;
211 dclerr("redeclaration of statement function", np);
215 np->b_name.vprocclass = PSTFUNCT;
216 np->vstg = STGSTFUNCT;
217 impldcl(np);
219 np->b_name.vardesc.vstfdesc = mkchain((void *)args, (void *)rp);
308 register struct bigblock *np;
203 struct bigblock *np; local
306 register struct bigblock *np; local
464 struct bigblock *np; local
[all...]
H A Dexpr.c664 mkscalar(np)
665 register struct bigblock *np;
669 vardcl(np);
670 ap = mkaddr(np);
677 if( !checksubs && np->vstg==STGARG)
680 dp = np->vdim;
682 ap->memoffset = mkexpr(OPSTAR, MKICON(typesize[np->vtype]),
699 register struct bigblock *np;
704 np = p->b_prim.namep;
705 class = np
697 register struct bigblock *np; local
787 stfcall(struct bigblock *np, struct bigblock *actlist) argument
868 struct bigblock *np; local
992 register struct bigblock *np; local
1046 subcheck(struct bigblock *np, bigptr p) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dparisc-mont.pl115 $np="%r23";
173 or $ap,$np,$ti1
174 extru,= $ti1,31,3,%r0 ; are ap and np 64-bit aligned?
193 fldds 0($np),${fni} ; np[0,1]
210 addl $arrsz,$np,$np
214 xmpyu ${fni}L,${fm0}R,${fnm0} ; np[0]*m
215 xmpyu ${fni}R,${fm0}R,${fnm1} ; np[1]*m
221 flddx $idx($np),
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/route6d/
H A Droute6d.c998 struct netinfo6 *np, *nq; local
1052 np = rp->rip6_nets;
1061 riprequest(ifcp, np, nn, &fsock);
1063 riprequest(NULL, np, nn, &fsock);
1095 for (; nn; nn--, np++) {
1096 if (np->rip6_metric == NEXTHOP_METRIC) {
1098 if (IN6_IS_ADDR_LINKLOCAL(&np->rip6_dest)) {
1099 nh = np->rip6_dest;
1102 } else if (IN6_IS_ADDR_UNSPECIFIED(&np->rip6_dest)) {
1108 inet6_n2p(&np
1283 struct netinfo6 *np; local
1309 riprequest(struct ifc *ifcp, struct netinfo6 *np, int nn, struct sockaddr_in6 *sin6) argument
1931 struct netinfo6 *np; local
2049 struct netinfo6 *np; local
2460 struct netinfo6 *np; local
2616 struct netinfo6 *np; local
2684 delroute(struct netinfo6 *np, struct in6_addr *gw) argument
3055 rtsearch(struct netinfo6 *np, struct riprt **prev_rrt) argument
[all...]
/netbsd-6-1-5-RELEASE/games/cribbage/
H A Dscore.c186 int *sp, *np; local
191 np = nsums;
195 *np++ = 0;
202 np = &nsums[i];
203 np[-1]++; /* one way to make this */
206 *np++ += *sp++;
210 np = nsums;
213 *sp++ = *np++;
/netbsd-6-1-5-RELEASE/sys/dev/raidframe/
H A Drf_pqdegdags.c188 int np = node->numParams; local
189 RF_AccessStripeMap_t *asmap = (RF_AccessStripeMap_t *) node->params[np - 1].p;
190 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[np - 2].p;
208 ppda = node->params[np - 6].p;
209 ppda2 = node->params[np - 5].p;
210 qpda = node->params[np - 4].p;
211 qpda2 = node->params[np - 3].p;
212 d = (np - 6);
215 ppda = node->params[np - 4].p;
216 qpda = node->params[np
299 int np = node->numParams; local
[all...]
/netbsd-6-1-5-RELEASE/bin/rcp/
H A Drcp.c485 char ch, *cp, *np, *targ, *vect[1], buf[BUFSIZ]; local
604 np = namebuf;
606 np = targ;
607 exists = stat(np, &stb) == 0;
616 (void)chmod(np, mode);
620 if (mkdir(np, mode | S_IRWXU) < 0)
623 vect[0] = np;
627 if (utimes(np, tv) < 0)
629 np, strerror(errno));
632 (void)chmod(np, mod
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/milter/
H A Dtest-milter.c543 const struct noproto_map *np; local
779 for (np = noproto_map; /* see below */ ; np++) {
780 if (np->name == 0) {
784 if (strcmp(nosend, np->name) == 0)
787 nosend_mask = np->send_mask;
788 np->action[0] = 0;
791 for (np = noproto_map; /* see below */ ; np++) {
792 if (np
[all...]
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dins_wstr.c140 nschar_t *np;
303 np = (nschar_t *)malloc(sizeof(nschar_t));
304 if (!np)
306 np->ch = *scp;
307 np->next = temp1->nsp;
308 temp1->nsp = np;
311 "wins_nstr: add non-spacing char(%x)\n", np->ch);

Completed in 312 milliseconds

1234567891011>>