Home
last modified time | relevance | path

Searched refs:luaT_gettmbyobj (Results 1 – 4 of 4) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dltm.h50 LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
H A Dltm.c61 const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) { in luaT_gettmbyobj() function
H A Dlvm.c122 else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_INDEX))) in luaV_gettable()
151 else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_NEWINDEX))) in luaV_settable()
167 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */ in call_binTM()
169 tm = luaT_gettmbyobj(L, p2, event); /* try second operand */ in call_binTM()
192 const TValue *tm1 = luaT_gettmbyobj(L, p1, event); in call_orderTM()
195 tm2 = luaT_gettmbyobj(L, p2, event); in call_orderTM()
H A Dldo.c245 const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL); in tryfuncTM()