Lines Matching +defs:L +defs:loop
176 static int forlimit (lua_State *L, lua_Integer init, const TValue *lim, in forlimit()
206 static int forprep (lua_State *L, StkId ra) { in forprep()
287 void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val, in luaV_finishget()
289 int loop; /* counter to avoid infinite loops */ in luaV_finishget() local
330 void luaV_finishset (lua_State *L, const TValue *t, TValue *key, in luaV_finishset()
332 int loop; /* counter to avoid infinite loops */ in luaV_finishset() local
523 static int lessthanothers (lua_State *L, const TValue *l, const TValue *r) { in lessthanothers()
535 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
545 static int lessequalothers (lua_State *L, const TValue *l, const TValue *r) { in lessequalothers()
557 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
568 int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { in luaV_equalobj()
616 #define tostring(L,o) \ argument
636 void luaV_concat (lua_State *L, int total) { in luaV_concat()
681 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
716 lua_Integer luaV_idiv (lua_State *L, lua_Integer m, lua_Integer n) { in luaV_idiv()
736 lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) { in luaV_mod()
754 lua_Number luaV_modf (lua_State *L, lua_Number m, lua_Number n) { in luaV_modf()
785 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, in pushclosure()
806 void luaV_finishOp (lua_State *L) { in luaV_finishOp()
867 #define l_addi(L,a,b) intop(+, a, b) argument
868 #define l_subi(L,a,b) intop(-, a, b) argument
869 #define l_muli(L,a,b) intop(*, a, b) argument
884 #define op_arithI(L,iop,fop) { \ argument
902 #define op_arithf_aux(L,v1,v2,fop) { \ argument
912 #define op_arithf(L,fop) { \ argument
921 #define op_arithfK(L,fop) { \ argument
930 #define op_arith_aux(L,v1,v2,iop,fop) { \ argument
941 #define op_arith(L,iop,fop) { \ argument
950 #define op_arithK(L,iop,fop) { \ argument
959 #define op_bitwiseK(L,op) { \ argument
972 #define op_bitwise(L,op) { \ argument
986 #define op_order(L,opi,opn,other) { \ argument
1005 #define op_orderI(L,opi,opf,inv,tm) { \ argument
1075 #define savepc(L) (ci->u.l.savedpc = pc) argument
1082 #define savestate(L,ci) (savepc(L), L->top = ci->top) argument
1105 #define checkGC(L,c) \ argument
1126 void luaV_execute (lua_State *L, CallInfo *ci) { in luaV_execute()