Home
last modified time | relevance | path

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

/ndk/sources/host-tools/nawk-20071023/
Drun.c224 int i, ncall, ndef; in call() local
240 for (ncall = 0, x = a[1]; x != NULL; x = x->nnext) /* args in call */ in call()
241 ncall++; 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()
289 if (i >= ncall) { in call()