Lines Matching refs:nparams
266 size_t nparams; member
2364 f->nparams = 0; in bc_func_init()
2375 f->nparams = 0; in bc_func_reset()
3183 size_t nparams; in bc_parse_params() local
3188 for (nparams = 0; p->l.t != BC_LEX_RPAREN; ++nparams) { in bc_parse_params()
3203 bc_parse_pushIndex(p, nparams); in bc_parse_params()
3853 ++p->func->nparams; in bc_parse_func()
5142 size_t i, nparams = bc_program_index(code, idx); in bc_program_call() local
5154 if (nparams != f->nparams) in bc_program_call()
5155 return bc_vm_verr(BC_ERROR_EXEC_PARAMS, f->nparams, nparams); in bc_program_call()
5156 ip.len = p->results.len - nparams; in bc_program_call()
5158 for (i = 0; i < nparams; ++i) { in bc_program_call()
5163 a = bc_vec_item(&f->autos, nparams - 1 - i); in bc_program_call()
5170 struct str_len *id = bc_vec_item(&f->autos, nparams - 1 - j); in bc_program_call()