Searched refs:ttistable (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | lvm.h | 86 (!ttistable(t) \ 97 (!ttistable(t) \
|
H A D | lobject.h | 682 #define ttistable(o) checktag((o), ctb(LUA_VTABLE)) macro 684 #define hvalue(o) check_exp(ttistable(o), gco2t(val_(o).gc))
|
H A D | ltm.c | 93 if ((ttistable(o) && (mt = hvalue(o)->metatable) != NULL) || in luaT_objtypename()
|
H A D | lapi.c | 727 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 D | lvm.c | 297 lua_assert(!ttistable(t)); in luaV_finishget()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lapi.c | 641 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 D | lobject.h | 137 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro 161 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
|
H A D | lvm.c | 114 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()
|