Lines Matching +defs:L +defs:v +defs:v
46 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
59 static void traceexec (lua_State *L) { in traceexec()
92 static void callTM (lua_State *L, const TValue *f, const TValue *p1, in callTM()
111 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable()
137 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable()
176 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, in call_binTM()
187 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2, in get_equalTM()
201 static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, in call_orderTM()
232 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
244 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
261 int luaV_equalobj_ (lua_State *L, const TValue *t1, const TValue *t2) { in luaV_equalobj_()
294 void luaV_concat (lua_State *L, int total) { in luaV_concat()
336 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
372 static lua_Number luaV_div (lua_State *L, lua_Number m, lua_Number n) { in luaV_div()
392 static lua_Number luaV_mod (lua_State *L, lua_Number m, lua_Number n) { in luaV_mod()
410 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
447 TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; in getcached() local
462 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, in pushclosure()
484 void luaV_finishOp (lua_State *L) { in luaV_finishOp()
546 #define luai_runtimecheck(L, c) /* void */ argument
574 #define checkGC(L,c) \ argument
595 void luaV_execute (lua_State *L) { in luaV_execute()