Searched refs:nextra (Results 1 – 2 of 2) sorted by relevance
241 int nextra = actual - nfixparams; /* number of extra arguments */ in luaT_adjustvarargs() local242 ci->u.l.nextraargs = nextra; in luaT_adjustvarargs()259 int nextra = ci->u.l.nextraargs; in luaT_getvarargs() local261 wanted = nextra; /* get all extra arguments available */ in luaT_getvarargs()262 checkstackGCp(L, nextra, where); /* ensure stack space */ in luaT_getvarargs()263 L->top = where + nextra; /* next instruction will need top */ in luaT_getvarargs()265 for (i = 0; i < wanted && i < nextra; i++) in luaT_getvarargs()266 setobjs2s(L, where + i, ci->func - nextra + i); in luaT_getvarargs()
190 int nextra = ci->u.l.nextraargs; in findvararg() local191 if (n >= -nextra) { /* 'n' is negative */ in findvararg()192 *pos = ci->func - nextra - (n + 1); in findvararg()