Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dlvm.h86 (!ttistable(t) \
97 (!ttistable(t) \
H A Dlobject.h682 #define ttistable(o) checktag((o), ctb(LUA_VTABLE)) macro
684 #define hvalue(o) check_exp(ttistable(o), gco2t(val_(o).gc))
H A Dltm.c93 if ((ttistable(o) && (mt = hvalue(o)->metatable) != NULL) || in luaT_objtypename()
H A Dlapi.c727 api_check(L, ttistable(t), "table expected"); in gettable()
942 api_check(L, ttistable(s2v(L->top.p - 1)), "table expected"); in lua_setmetatable()
H A Dlvm.c297 lua_assert(!ttistable(t)); in luaV_finishget()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlapi.c641 api_check(L, ttistable(t), "table expected"); in lua_rawget()
651 api_check(L, ttistable(t), "table expected"); in lua_rawgeti()
663 api_check(L, ttistable(t), "table expected"); in lua_rawgetp()
773 api_check(L, ttistable(t), "table expected"); in lua_rawset()
787 api_check(L, ttistable(t), "table expected"); in lua_rawseti()
801 api_check(L, ttistable(t), "table expected"); in lua_rawsetp()
819 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setmetatable()
859 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setuservalue()
1117 api_check(L, ttistable(t), "table expected"); in lua_next()
H A Dlobject.h137 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro
161 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
H A Dlvm.c114 if (ttistable(t)) { /* `t' is a table? */ in luaV_gettable()
140 if (ttistable(t)) { /* `t' is a table? */ in luaV_settable()
884 luai_runtimecheck(L, ttistable(ra)); in luaV_execute()