Searched refs:narg (Results 1 - 25 of 90) sorted by path

1234

/freebsd-11-stable/bin/sh/
H A Deval.c275 defun(n->narg.text, n->narg.next);
359 for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
402 for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
735 isdeclarationcmd(struct narg *arg)
743 arg = &arg->next->narg;
861 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
862 if (varflag && isassignment(argp->narg.text)) {
867 varflag = isdeclarationcmd(&argp->narg) ? 2 : 0;
1200 if (goodname(n->ncmd.args->narg
[all...]
H A Dexpand.c230 argbackq = arg->narg.backquote;
234 argstr(arg->narg.text, flag, &exparg);
1448 argbackq = pattern->narg.backquote;
1450 argstr(pattern->narg.text, EXP_TILDE | EXP_CASE, NULL);
1535 for (n = args; n != NULL; n = n->narg.next) {
1536 if (n->narg.backquote != NULL) {
1543 for (n = args; n != NULL; n = n->narg.next)
H A Dparser.c261 pnext = &n->narg.next;
485 app = &n2->narg.next;
495 n2 = (union node *)stalloc(sizeof (struct narg));
497 n2->narg.text = argvars;
498 n2->narg.backquote = NULL;
499 n2->narg.next = NULL;
540 app = &ap->narg.next;
543 ap->narg.next = NULL;
650 app = &n->narg.next;
657 } else if (lasttoken == TLP && app == &args->narg
[all...]
H A Dredir.c274 p = redir->nhere.doc->narg.text;
H A Dshow.c130 for (np = cmd->ncmd.args ; np ; np = np->narg.next) {
184 bqlist = arg->narg.backquote;
185 for (p = arg->narg.text ; *p ; p++) {
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-mips.c10617 int narg = 0, nstat = 0;
10623 narg++;
10638 opcode |= ((narg << 2) | nstat) << 16;
10610 int narg = 0, nstat = 0; local
/freebsd-11-stable/contrib/binutils/gas/
H A Dmacro.c993 int narg = 0; local
1077 ++narg;
1119 ++narg;
1155 sprintf (buffer, "%d", narg);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dmep-asm.c522 expand_macro (arg *args, int narg, macro *mac)
529 /* printf("expanding macro %s with %d args\n", mac->name, narg + 1); */
535 ((*(e + 1) - '1') <= narg))
568 int narg = -1;
600 narg = 0;
601 args[narg].start = in + 1;
602 args[narg].len = 0;
614 narg++;
615 args[narg].start = (in + 1);
616 args[narg]
521 expand_macro(arg *args, int narg, macro *mac) argument
567 int narg = -1; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dbuiltins.c1783 tree arg, narg;
1858 narg = builtin_save_expr (arg);
1859 if (narg != arg)
1861 arg = narg;
1953 tree arg0, arg1, temp, narg;
1998 narg = builtin_save_expr (arg1);
1999 if (narg != arg1)
2001 arg1 = narg;
2002 temp = build_tree_list (NULL_TREE, narg);
2008 narg
1782 tree arg, narg; local
1952 tree arg0, arg1, temp, narg; local
2065 tree arg, narg; local
2227 tree arg, narg; local
[all...]
/freebsd-11-stable/contrib/one-true-awk/
H A Dawk.h137 struct Node *narg[1]; /* variable: actual size set by calling malloc */ member in struct:Node
H A Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
H A Db.c45 #define left(v) (v)->narg[0]
46 #define right(v) (v)->narg[1]
H A Dparse.c56 x->narg[0]=b;
66 x->narg[0] = b;
67 x->narg[1] = c;
77 x->narg[0] = b;
78 x->narg[1] = c;
79 x->narg[2] = d;
89 x->narg[0] = b;
90 x->narg[1] = c;
91 x->narg[2] = d;
92 x->narg[
[all...]
H A Drun.c152 x = (Cell *) (a->narg[0]);
162 x = (*proc)(a->narg, a->nobj);
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dcommands.c191 int narg; /* Number of arguments */ member in struct:sendlist
271 if (i + s->narg >= argc) {
274 s->narg, s->narg == 1 ? "" : "s", s->name, s->name);
283 i += s->narg;
309 success += (*s->handler)((s->narg > 0) ? argv[i+1] : 0,
310 (s->narg > 1) ? argv[i+2] : 0);
311 i += s->narg;
1444 int narg;
1509 if (c->narg
1436 int narg; member in struct:envlist
1746 int narg; member in struct:authlist
[all...]
/freebsd-11-stable/crypto/openssl/apps/
H A Ds_cb.c1367 int narg = 2; local
1411 narg = 1;
1428 (*pargs) += narg;
1431 *pargc -= narg;
/freebsd-11-stable/crypto/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl381 my $narg = $current_function->{narg};
382 $narg=6 if (!defined($narg));
383 $func .= " movq %rcx,%rdi\n" if ($narg>0);
384 $func .= " movq %rdx,%rsi\n" if ($narg>1);
385 $func .= " movq %r8,%rdx\n" if ($narg>2);
386 $func .= " movq %r9,%rcx\n" if ($narg>3);
387 $func .= " movq 40(%rsp),%r8\n" if ($narg>4);
388 $func .= " movq 48(%rsp),%r9\n" if ($narg>
[all...]
/freebsd-11-stable/lib/libgeom/
H A Dgeom_ctl.c69 for (i = 0; i < req->narg; i++) {
140 req->narg++;
141 req->arg = reallocf(req->arg, sizeof *ap * req->narg);
144 req->narg = 0;
147 ap = req->arg + (req->narg - 1);
229 for (i = 0; i < req->narg; i++) {
/freebsd-11-stable/sbin/geom/misc/
H A Dsubr.c412 for (i = 0; i < req->narg; i++) {
486 for (i = 0; i < req->narg; i++) {
513 while (i < req->narg) {
519 if (i == req->narg)
523 req->narg--;
524 while (i < req->narg) {
540 for (i = 0; i < req->narg; i++) {
/freebsd-11-stable/sys/amd64/cloudabi32/
H A Dcloudabi32_sysvec.c107 sa->narg = sa->callp->sy_narg;
120 sa->narg * sizeof(sa->args[0]));
/freebsd-11-stable/sys/amd64/cloudabi64/
H A Dcloudabi64_sysvec.c103 sa->narg = sa->callp->sy_narg;
/freebsd-11-stable/sys/amd64/ia32/
H A Dia32_syscall.c185 sa->narg = sa->callp->sy_narg;
187 if (params != NULL && sa->narg != 0)
189 (u_int)(sa->narg * sizeof(int)));
193 for (i = 0; i < sa->narg; i++)
/freebsd-11-stable/sys/amd64/include/
H A Dproc.h77 int narg; member in struct:syscall_args
/freebsd-11-stable/sys/arm/arm/
H A Dsyscall.c127 sa->narg = sa->callp->sy_narg;
130 if (sa->narg > sa->nap) {
132 sa->nap, (sa->narg - sa->nap) * sizeof(register_t));
/freebsd-11-stable/sys/arm/cloudabi32/
H A Dcloudabi32_sysvec.c84 sa->narg = sa->callp->sy_narg;
91 if (sa->narg > 4) {
93 (sa->narg - 4) * sizeof(register_t));

Completed in 335 milliseconds

1234