Searched refs:clvalue (Results 1 – 9 of 9) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lstate.h | 59 #define curr_func(L) (clvalue(L->ci->func)) 60 #define ci_func(ci) (clvalue((ci)->func))
|
| H A D | lobject.h | 98 #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 D | lapi.c | 381 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 D | luac.c | 117 #define toproto(L,i) (clvalue(L->top+(i))->l.p)
|
| H A D | ldebug.c | 241 f = clvalue(func); in lua_getinfo() 247 f = clvalue(ci->func); in lua_getinfo()
|
| H A D | lvm.c | 385 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 D | ldo.c | 271 cl = &clvalue(func)->l; in luaD_precall()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lobject.h | 158 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl) macro
|
| H A D | ldebug.c | 296 cl = ttisclosure(func) ? clvalue(func) : NULL; in lua_getinfo()
|