Lines Matching refs:TValue
35 const TValue *luaV_tonumber (const TValue *obj, TValue *n) { in luaV_tonumber()
93 static void callTM (lua_State *L, const TValue *f, const TValue *p1, in callTM()
94 const TValue *p2, TValue *p3, int hasres) { in callTM()
110 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable()
113 const TValue *tm; in luaV_gettable()
116 const TValue *res = luaH_get(h, key); /* do a primitive get */ in luaV_gettable()
136 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable()
139 const TValue *tm; in luaV_settable()
142 TValue *oldval = cast(TValue *, luaH_get(h, key)); in luaV_settable()
175 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, in call_binTM()
177 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */ in call_binTM()
186 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2, in get_equalTM()
188 const TValue *tm1 = fasttm(L, mt1, event); in get_equalTM()
189 const TValue *tm2; in get_equalTM()
200 static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, in call_orderTM()
231 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
243 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
260 int luaV_equalobj_ (lua_State *L, const TValue *t1, const TValue *t2) { in luaV_equalobj_()
261 const TValue *tm; in luaV_equalobj_()
335 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
336 const TValue *tm; in luaV_objlen()
409 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
410 const TValue *rc, TMS op) { in luaV_arith()
411 TValue tempb, tempc; in luaV_arith()
412 const TValue *b, *c; in luaV_arith()
446 TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; in getcached()
581 TValue *rb = RKB(i); \
582 TValue *rc = RKC(i); \
597 TValue *k; in luaV_execute()
621 TValue *rb = k + GETARG_Bx(i); in luaV_execute()
625 TValue *rb; in luaV_execute()
699 TValue *rb = RB(i); in luaV_execute()
709 TValue *rb = RB(i); in luaV_execute()
732 TValue *rb = RKB(i); in luaV_execute()
733 TValue *rc = RKC(i); in luaV_execute()
764 TValue *rb = RB(i); in luaV_execute()
842 const TValue *init = ra; in luaV_execute()
843 const TValue *plimit = ra+1; in luaV_execute()
844 const TValue *pstep = ra+2; in luaV_execute()
890 TValue *val = ra+n; in luaV_execute()