Home
last modified time | relevance | path

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

/minix3/external/mit/lua/dist/src/
H A Dldo.h18 #define luaD_checkstack(L,n) if (L->stack_last - L->top <= (n)) \ macro
22 #define incr_top(L) {L->top++; luaD_checkstack(L,0);}
H A Dldo.c246 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_hook()
282 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
331 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */ in luaD_precall()
352 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
377 luaD_checkstack(L, 1); /* ensure space for metamethod */ in luaD_precall()
H A Dlobject.c391 luaD_checkstack(L, 2); /* fmt + item */ in luaO_pushvfstring()
449 luaD_checkstack(L, 1); in luaO_pushvfstring()
H A Dlvm.c1348 Protect(luaD_checkstack(L, n));