Home
last modified time | relevance | path

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

/external/chromium_org/third_party/skia/third_party/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()
307 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
327 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
Dlvm.c848 Protect(luaD_checkstack(L, n)); in luaV_execute()