Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.h17 #define luaD_checkstack(L,n) if (L->stack_last - L->top <= (n)) \ macro
21 #define incr_top(L) {L->top++; luaD_checkstack(L,0);}
H A Dlobject.c179 luaD_checkstack(L, 2); /* fmt + item */ in luaO_pushvfstring()
221 luaD_checkstack(L, 1); in luaO_pushvfstring()
H A Dldo.c297 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_hook()
333 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
378 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
399 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
H A Dlvm.c912 Protect(luaD_checkstack(L, n)); in luaV_execute()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.h16 #define luaD_checkstack(L,n) \ macro
22 #define incr_top(L) {luaD_checkstack(L,1); L->top++;}
H A Dldo.c193 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_callhook()
220 luaD_checkstack(L, p->maxstacksize); in adjust_varargs()
277 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
310 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
H A Dlvm.c86 luaD_checkstack(L, 3); in callTMres()
102 luaD_checkstack(L, 4); in callTM()
749 Protect(luaD_checkstack(L, n)); in luaV_execute()
H A Dlapi.c101 luaD_checkstack(L, size); in lua_checkstack()