Lines Matching +defs:L +defs:v +defs:v

45 int luaV_tostring (lua_State *L, StkId obj) {  in luaV_tostring()
58 static void traceexec (lua_State *L) { in traceexec()
91 static void callTM (lua_State *L, const TValue *f, const TValue *p1, in callTM()
110 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable()
136 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable()
175 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, in call_binTM()
186 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2, 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_()
293 void luaV_concat (lua_State *L, int total) { in luaV_concat()
335 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
371 static lua_Number luaV_div (lua_State *L, lua_Number m, lua_Number n) { in luaV_div()
391 static lua_Number luaV_mod (lua_State *L, lua_Number m, lua_Number n) { in luaV_mod()
409 void luaV_arith (lua_State *L, StkId ra, const TValue *rb, in luaV_arith()
446 TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; in getcached() local
461 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, in pushclosure()
483 void luaV_finishOp (lua_State *L) { in luaV_finishOp()
545 #define luai_runtimecheck(L, c) /* void */ argument
573 #define checkGC(L,c) \ argument
594 void luaV_execute (lua_State *L) { in luaV_execute()