Home
last modified time | relevance | path

Searched refs:savestack (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
Dldo.c221 ptrdiff_t top = savestack(L, L->top); in luaD_hook()
222 ptrdiff_t ci_top = savestack(L, ci->top); in luaD_hook()
276 ptrdiff_t funcr = savestack(L, func); in tryfuncTM()
299 ptrdiff_t funcr = savestack(L, func); in luaD_precall()
361 ptrdiff_t fr = savestack(L, firstResult); /* hook may change stack */ in luaD_poscall()
571 ci->extra = savestack(L, ci->func); /* save current 'func' */ in lua_yieldk()
664 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
Dldo.h22 #define savestack(L,p) ((char *)(p) - (char *)L->stack) macro
Dlapi.c944 func = savestack(L, o); in lua_pcallk()
949 status = luaD_pcall(L, f_call, &c, savestack(L, c.func), func); in lua_pcallk()
956 ci->extra = savestack(L, c.func); in lua_pcallk()
Dlgc.c817 status = luaD_pcall(L, dothecall, NULL, savestack(L, L->top - 2), 0); in GCTM()
Dlvm.c95 ptrdiff_t result = savestack(L, p3); in callTM()