• Home
  • Raw
  • Download

Lines Matching defs:fs

64 void luaK_nil (FuncState *fs, int from, int n) {  in luaK_nil()
90 static int getjump (FuncState *fs, int pc) { in getjump()
103 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
116 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
136 int luaK_jump (FuncState *fs) { in luaK_jump()
149 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
158 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
168 int luaK_getlabel (FuncState *fs) { in luaK_getlabel()
179 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
195 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg()
213 static void removevalues (FuncState *fs, int list) { in removevalues()
224 static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, in patchlistaux()
242 static void dischargejpc (FuncState *fs) { in dischargejpc()
252 void luaK_patchtohere (FuncState *fs, int list) { in luaK_patchtohere()
263 void luaK_patchlist (FuncState *fs, int list, int target) { in luaK_patchlist()
278 void luaK_patchclose (FuncState *fs, int list, int level) { in luaK_patchclose()
293 static int luaK_code (FuncState *fs, Instruction i) { in luaK_code()
312 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
324 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
335 static int codeextraarg (FuncState *fs, int a) { in codeextraarg()
346 int luaK_codek (FuncState *fs, int reg, int k) { in luaK_codek()
361 void luaK_checkstack (FuncState *fs, int n) { in luaK_checkstack()
375 void luaK_reserveregs (FuncState *fs, int n) { in luaK_reserveregs()
386 static void freereg (FuncState *fs, int reg) { in freereg()
397 static void freeexp (FuncState *fs, expdesc *e) { in freeexp()
407 static void freeexps (FuncState *fs, expdesc *e1, expdesc *e2) { in freeexps()
428 static int addk (FuncState *fs, TValue *key, TValue *v) { in addk()
458 int luaK_stringK (FuncState *fs, TString *s) { in luaK_stringK()
471 int luaK_intK (FuncState *fs, lua_Integer n) { in luaK_intK()
481 static int luaK_numberK (FuncState *fs, lua_Number r) { in luaK_numberK()
491 static int boolK (FuncState *fs, int b) { in boolK()
501 static int nilK (FuncState *fs) { in nilK()
515 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns()
539 void luaK_setoneret (FuncState *fs, expdesc *e) { in luaK_setoneret()
556 void luaK_dischargevars (FuncState *fs, expdesc *e) { in luaK_dischargevars()
595 static void discharge2reg (FuncState *fs, expdesc *e, int reg) { in discharge2reg()
641 static void discharge2anyreg (FuncState *fs, expdesc *e) { in discharge2anyreg()
649 static int code_loadbool (FuncState *fs, int A, int b, int jump) { in code_loadbool()
659 static int need_value (FuncState *fs, int list) { in need_value()
675 static void exp2reg (FuncState *fs, expdesc *e, int reg) { in exp2reg()
703 void luaK_exp2nextreg (FuncState *fs, expdesc *e) { in luaK_exp2nextreg()
715 int luaK_exp2anyreg (FuncState *fs, expdesc *e) { in luaK_exp2anyreg()
734 void luaK_exp2anyregup (FuncState *fs, expdesc *e) { in luaK_exp2anyregup()
744 void luaK_exp2val (FuncState *fs, expdesc *e) { in luaK_exp2val()
758 int luaK_exp2RK (FuncState *fs, expdesc *e) { in luaK_exp2RK()
782 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { in luaK_storevar()
809 void luaK_self (FuncState *fs, expdesc *e, expdesc *key) { in luaK_self()
825 static void negatecondition (FuncState *fs, expdesc *e) { in negatecondition()
839 static int jumponcond (FuncState *fs, expdesc *e, int cond) { in jumponcond()
857 void luaK_goiftrue (FuncState *fs, expdesc *e) { in luaK_goiftrue()
884 void luaK_goiffalse (FuncState *fs, expdesc *e) { in luaK_goiffalse()
910 static void codenot (FuncState *fs, expdesc *e) { in codenot()
946 void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) { in luaK_indexed()
978 static int constfolding (FuncState *fs, int op, expdesc *e1, in constfolding()
1004 static void codeunexpval (FuncState *fs, OpCode op, expdesc *e, int line) { in codeunexpval()
1022 static void codebinexpval (FuncState *fs, OpCode op, in codebinexpval()
1037 static void codecomp (FuncState *fs, BinOpr opr, expdesc *e1, expdesc *e2) { in codecomp()
1066 void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { in luaK_prefix()
1086 void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { in luaK_infix()
1124 void luaK_posfix (FuncState *fs, BinOpr op, in luaK_posfix()
1177 void luaK_fixline (FuncState *fs, int line) { in luaK_fixline()
1189 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist()