Home
last modified time | relevance | path

Searched refs:ttisfunction (Results 1 – 11 of 11) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlobject.h83 #define ttisfunction(o) (ttype(o) == LUA_TFUNCTION) macro
98 #define clvalue(o) check_exp(ttisfunction(o), &(o)->value.gc->cl)
H A Dlstate.h62 #define isLua(ci) (ttisfunction((ci)->func) && f_isLua(ci))
H A Dldebug.c239 luai_apicheck(L, ttisfunction(func)); in lua_getinfo()
246 lua_assert(ttisfunction(ci->func)); in lua_getinfo()
621 if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR); in luaG_errormsg()
H A Dldo.c248 if (!ttisfunction(tm)) in tryfuncTM()
268 if (!ttisfunction(func)) /* `func' is not a function? */ in luaD_precall()
H A Dlvm.c124 if (ttisfunction(tm)) { in luaV_gettable()
153 if (ttisfunction(tm)) { in luaV_settable()
H A Dlapi.c1041 if (!ttisfunction(fi)) return NULL; in aux_upvalue()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldebug.c287 api_check(L, ttisfunction(func), "function expected"); in lua_getinfo()
294 lua_assert(ttisfunction(ci->func)); in lua_getinfo()
590 if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR); in luaG_errormsg()
H A Dlobject.h139 #define ttisfunction(o) checktype(o, LUA_TFUNCTION) macro
H A Dlvm.c127 if (ttisfunction(tm)) { in luaV_gettable()
166 if (ttisfunction(tm)) { in luaV_settable()
H A Dldo.c348 if (!ttisfunction(tm)) in tryfuncTM()
H A Dlgc.c814 if (tm != NULL && ttisfunction(tm)) { /* is there a finalizer? */ in GCTM()