Home
last modified time | relevance | path

Searched refs:ttistable (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlapi.c214 api_check(L, ttistable(L->top - 1)); in lua_replace()
561 api_check(L, ttistable(t)); in lua_rawget()
571 api_check(L, ttistable(o)); in lua_rawgeti()
676 api_check(L, ttistable(t)); in lua_rawset()
689 api_check(L, ttistable(o)); in lua_rawseti()
707 api_check(L, ttistable(L->top - 1)); in lua_setmetatable()
741 api_check(L, ttistable(L->top - 1)); in lua_setfenv()
978 api_check(L, ttistable(t)); in lua_next()
H A Dlobject.h82 #define ttistable(o) (ttype(o) == LUA_TTABLE) macro
99 #define hvalue(o) check_exp(ttistable(o), &(o)->value.gc->h)
H A Dlvm.c112 if (ttistable(t)) { /* `t' is a table? */ in luaV_gettable()
139 if (ttistable(t)) { /* `t' is a table? */ in luaV_settable()
707 runtime_check(L, ttistable(ra)); in luaV_execute()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlapi.c640 api_check(L, ttistable(t), "table expected"); in lua_rawget()
650 api_check(L, ttistable(t), "table expected"); in lua_rawgeti()
662 api_check(L, ttistable(t), "table expected"); in lua_rawgetp()
772 api_check(L, ttistable(t), "table expected"); in lua_rawset()
786 api_check(L, ttistable(t), "table expected"); in lua_rawseti()
800 api_check(L, ttistable(t), "table expected"); in lua_rawsetp()
818 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setmetatable()
858 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setuservalue()
1116 api_check(L, ttistable(t), "table expected"); in lua_next()
H A Dlobject.h138 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro
162 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
H A Dlvm.c115 if (ttistable(t)) { /* `t' is a table? */ in luaV_gettable()
141 if (ttistable(t)) { /* `t' is a table? */ in luaV_settable()
885 luai_runtimecheck(L, ttistable(ra)); in luaV_execute()