Home
last modified time | relevance | path

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

/external/lua/src/
Dltm.c241 int nextra = actual - nfixparams; /* number of extra arguments */ in luaT_adjustvarargs() local
242 ci->u.l.nextraargs = nextra; in luaT_adjustvarargs()
259 int nextra = ci->u.l.nextraargs; in luaT_getvarargs() local
261 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()
Dldebug.c190 int nextra = ci->u.l.nextraargs; in findvararg() local
191 if (n >= -nextra) { /* 'n' is negative */ in findvararg()
192 *pos = ci->func - nextra - (n + 1); in findvararg()