Searched refs:ttistable (Results 1 – 3 of 3) sorted by relevance
/external/syslinux/com32/lua/src/ |
D | lapi.c | 643 api_check(L, ttistable(t), "table expected"); in lua_rawget() 653 api_check(L, ttistable(t), "table expected"); in lua_rawgeti() 665 api_check(L, ttistable(t), "table expected"); in lua_rawgetp() 775 api_check(L, ttistable(t), "table expected"); in lua_rawset() 789 api_check(L, ttistable(t), "table expected"); in lua_rawseti() 803 api_check(L, ttistable(t), "table expected"); in lua_rawsetp() 821 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setmetatable() 861 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setuservalue() 1119 api_check(L, ttistable(t), "table expected"); in lua_next()
|
D | lobject.h | 140 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro 164 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
|
D | lvm.c | 137 if (ttistable(t)) { /* `t' is a table? */ in luaV_gettable() 163 if (ttistable(t)) { /* `t' is a table? */ in luaV_settable() 844 luai_runtimecheck(L, ttistable(ra)); in luaV_execute()
|