Lines Matching defs:ndef
232 int i, ncall, ndef;
250 ndef = (int) fcn->fval; /* args in defn */
251 DPRINTF("calling %s, %d args (%d in defn), frp=%d\n", s, ncall, ndef, (int) (frp-frame));
252 if (ncall > ndef)
254 s, ncall, ndef);
255 if (ncall + ndef > NARGS)
256 FATAL("function %s has %d arguments, limit %d", s, ncall+ndef, NARGS);
271 for ( ; i < ndef; i++) { /* add null args for ones not provided */
285 frp->nargs = ndef; /* number defined with (excess are locals) */
292 for (i = 0; i < ndef; i++) {