Lines Matching defs:L

180 static int forlimit (lua_State *L, lua_Integer init, const TValue *lim,  in forlimit()
210 static int forprep (lua_State *L, StkId ra) { in forprep()
291 void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val, in luaV_finishget()
334 void luaV_finishset (lua_State *L, const TValue *t, TValue *key, in luaV_finishset()
524 static int lessthanothers (lua_State *L, const TValue *l, const TValue *r) { in lessthanothers()
536 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
546 static int lessequalothers (lua_State *L, const TValue *l, const TValue *r) { in lessequalothers()
558 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
569 int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { in luaV_equalobj()
622 #define tostring(L,o) \ argument
642 void luaV_concat (lua_State *L, int total) { in luaV_concat()
689 void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { in luaV_objlen()
724 lua_Integer luaV_idiv (lua_State *L, lua_Integer m, lua_Integer n) { in luaV_idiv()
744 lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) { in luaV_mod()
762 lua_Number luaV_modf (lua_State *L, lua_Number m, lua_Number n) { in luaV_modf()
792 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, in pushclosure()
813 void luaV_finishOp (lua_State *L) { in luaV_finishOp()
887 #define l_addi(L,a,b) intop(+, a, b) argument
888 #define l_subi(L,a,b) intop(-, a, b) argument
889 #define l_muli(L,a,b) intop(*, a, b) argument
904 #define op_arithI(L,iop,fop) { \ argument
923 #define op_arithf_aux(L,v1,v2,fop) { \ argument
933 #define op_arithf(L,fop) { \ argument
943 #define op_arithfK(L,fop) { \ argument
953 #define op_arith_aux(L,v1,v2,iop,fop) { \ argument
965 #define op_arith(L,iop,fop) { \ argument
974 #define op_arithK(L,iop,fop) { \ argument
983 #define op_bitwiseK(L,op) { \ argument
997 #define op_bitwise(L,op) { \ argument
1012 #define op_order(L,opi,opn,other) { \ argument
1032 #define op_orderI(L,opi,opf,inv,tm) { \ argument
1104 #define savepc(L) (ci->u.l.savedpc = pc) argument
1111 #define savestate(L,ci) (savepc(L), L->top.p = ci->top.p) argument
1130 #define checkGC(L,c) \ argument
1150 void luaV_execute (lua_State *L, CallInfo *ci) { in luaV_execute()