Home
last modified time | relevance | path

Searched refs:nargs (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Dfunction.c2134 int nargs; in handle_function() local
2153 for (nargs=1, end=beg; *end != '\0'; ++end) in handle_function()
2155 ++nargs; in handle_function()
2169 argvp = argv = (char **) alloca (sizeof (char *) * (nargs + 2)); in handle_function()
2190 for (p=beg, nargs=0; p <= end; ++argvp) in handle_function()
2194 ++nargs; in handle_function()
2196 if (nargs == entry_p->maximum_args in handle_function()
2213 *op = expand_builtin_function (*op, nargs, argv, entry_p); in handle_function()
/ndk/
Dndk-gdb.py62 "--port", type=int, nargs="?", default="5039",
84 "--attach", action=NoopAction, nargs=0,
/ndk/sources/host-tools/nawk-20071023/
Drun.c209 int nargs; /* number of arguments in this call */ member
278 fp->nargs = ndef; /* number defined with (excess are locals) */ in call()
340 dprintf( ("arg(%d), fp->nargs=%d\n", n, fp->nargs) ); in arg()
341 if (n+1 > fp->nargs) in arg()