Home
last modified time | relevance | path

Searched refs:clvalue (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlstate.h59 #define curr_func(L) (clvalue(L->ci->func))
60 #define ci_func(ci) (clvalue((ci)->func))
H A Dlobject.h98 #define clvalue(o) check_exp(ttisfunction(o), &(o)->value.gc->cl) macro
315 #define iscfunction(o) (ttype(o) == LUA_TFUNCTION && clvalue(o)->c.isC)
316 #define isLfunction(o) (ttype(o) == LUA_TFUNCTION && !clvalue(o)->c.isC)
H A Dlapi.c381 return (!iscfunction(o)) ? NULL : clvalue(o)->c.f; in lua_tocfunction()
405 case LUA_TFUNCTION: return clvalue(o); in lua_topointer()
623 sethvalue(L, L->top, clvalue(o)->c.env); in lua_getfenv()
744 clvalue(o)->c.env = hvalue(L->top - 1); in lua_setfenv()
882 status = luaU_dump(L, clvalue(o)->l.p, writer, data, 0); in lua_dump()
1042 f = clvalue(fi); in aux_upvalue()
1082 luaC_barrier(L, clvalue(fi), L->top); in lua_setupvalue()
H A Dluac.c117 #define toproto(L,i) (clvalue(L->top+(i))->l.p)
H A Dldebug.c241 f = clvalue(func); in lua_getinfo()
247 f = clvalue(ci->func); in lua_getinfo()
H A Dlvm.c385 cl = &clvalue(L->ci->func)->l; in luaV_execute()
624 lua_assert(L->top == L->base + clvalue(func)->l.p->maxstacksize); in luaV_execute()
H A Dldo.c271 cl = &clvalue(func)->l; in luaD_precall()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.h158 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl) macro
H A Dldebug.c296 cl = ttisclosure(func) ? clvalue(func) : NULL; in lua_getinfo()