Searched refs:luaD_checkstack (Results 1 – 4 of 4) sorted by relevance
| /minix3/external/mit/lua/dist/src/ |
| H A D | ldo.h | 18 #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 D | ldo.c | 246 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 D | lobject.c | 391 luaD_checkstack(L, 2); /* fmt + item */ in luaO_pushvfstring() 449 luaD_checkstack(L, 1); in luaO_pushvfstring()
|
| H A D | lvm.c | 1348 Protect(luaD_checkstack(L, n));
|