Home
last modified time | relevance | path

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

/freebsd-13.1/sys/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.c296 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_hook()
332 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
377 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
398 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
H A Dlvm.c912 Protect(luaD_checkstack(L, n)); in luaV_execute()
/freebsd-13.1/contrib/lua/src/
H A Dldo.h31 #define luaD_checkstack(L,n) luaD_checkstackaux(L,n,(void)0,(void)0) macro
H A Dltm.c243 luaD_checkstack(L, p->maxstacksize + 1); in luaT_adjustvarargs()
H A Dldo.c282 luaD_checkstack(L, 1); in luaD_inctop()
311 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_hook()