Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.h16 #define luaD_checkstack(L,n) if (L->stack_last - L->top <= (n)) \ macro
20 #define incr_top(L) {L->top++; luaD_checkstack(L,0);}
Dlobject.c184 luaD_checkstack(L, 2); /* fmt + item */ in luaO_pushvfstring()
226 luaD_checkstack(L, 1); in luaO_pushvfstring()
Dldo.c227 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_hook()
263 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
308 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
329 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
Dlvm.c848 Protect(luaD_checkstack(L, n)); in luaV_execute()