Searched refs:luaD_checkstack (Results 1 – 8 of 8) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | ldo.h | 17 #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 D | lobject.c | 179 luaD_checkstack(L, 2); /* fmt + item */ in luaO_pushvfstring() 221 luaD_checkstack(L, 1); in luaO_pushvfstring()
|
| H A D | ldo.c | 297 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 D | lvm.c | 912 Protect(luaD_checkstack(L, n)); in luaV_execute()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldo.h | 16 #define luaD_checkstack(L,n) \ macro 22 #define incr_top(L) {luaD_checkstack(L,1); L->top++;}
|
| H A D | ldo.c | 193 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 D | lvm.c | 86 luaD_checkstack(L, 3); in callTMres() 102 luaD_checkstack(L, 4); in callTM() 749 Protect(luaD_checkstack(L, n)); in luaV_execute()
|
| H A D | lapi.c | 101 luaD_checkstack(L, size); in lua_checkstack()
|