Home
last modified time | relevance | path

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

/ndk/sources/host-tools/nawk-20071023/
Drun.c224 int i, ncall, ndef; in call() local
242 ndef = (int) fcn->fval; /* args in defn */ in call()
243 dprintf( ("calling %s, %d args (%d in defn), fp=%d\n", s, ncall, ndef, (int) (fp-frame)) ); in call()
244 if (ncall > ndef) in call()
246 s, ncall, ndef); in call()
247 if (ncall + ndef > NARGS) in call()
248 FATAL("function %s has %d arguments, limit %d", s, ncall+ndef, NARGS); in call()
263 for ( ; i < ndef; i++) { /* add null args for ones not provided */ in call()
278 fp->nargs = ndef; /* number defined with (excess are locals) */ in call()
285 for (i = 0; i < ndef; i++) { in call()