Searched refs:restorestack (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | ldo.h | 36 #define restorestack(L,n) ((StkId)((char *)L->stack + (n))) macro 44 p = restorestack(L, t__)) /* 'pos' part: restore 'p' */
|
D | ldo.c | 301 ci->top = restorestack(L, ci_top); in luaD_hook() 302 L->top = restorestack(L, top); in luaD_hook() 345 return restorestack(L, oldtop); in rethook() 393 res = restorestack(L, savedres); in moveresults() 603 oldtop = restorestack(L, ci->u2.funcidx); in recover() 605 oldtop = restorestack(L, ci->u2.funcidx); in recover() 751 StkId oldtop = restorestack(L, old_top); in luaD_pcall() 755 oldtop = restorestack(L, old_top); /* previous call may change stack */ in luaD_pcall()
|
D | lfunc.c | 171 L->top = restorestack(L, oldtop); in callclosemth() 232 level = restorestack(L, levelrel); in luaF_close()
|
D | ltm.c | 132 res = restorestack(L, result); in luaT_callTMres()
|
D | ldebug.c | 756 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg()
|