Searched refs:sizecode (Results 1 – 15 of 15) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldebug.c | 270 #define checkjump(pt,pc) check(0 <= pc && pc < pt->sizecode) 282 check(pt->sizelineinfo == pt->sizecode || pt->sizelineinfo == 0); in precheck() 283 check(pt->sizecode > 0 && GET_OPCODE(pt->code[pt->sizecode-1]) == OP_RETURN); in precheck() 320 last = pt->sizecode-1; /* points to final return (a `neutral' instruction) */ in symbexec() 347 check(0 <= dest && dest < pt->sizecode); in symbexec() 370 check(pc+2 < pt->sizecode); /* check skip */ in symbexec() 376 check(pc+2 < pt->sizecode); /* check its jump */ in symbexec() 446 check(pc < pt->sizecode - 1); in symbexec() 454 check(pc + nup < pt->sizecode); in symbexec() 485 return (symbexec(pt, pt->sizecode, NO_REG) != 0); in luaG_checkcode()
|
| H A D | print.c | 77 int pc,n=f->sizecode; in PrintCode() 173 S(f->sizecode),f->sizecode*Sizeof(Instruction),VOID(f)); in PrintHeader()
|
| H A D | lfunc.c | 123 f->sizecode = 0; in luaF_newproto() 142 luaM_freearray(L, f->code, f->sizecode, Instruction); in luaF_freeproto()
|
| H A D | luac.c | 132 f->sizecode=pc; in combine()
|
| H A D | ldump.c | 76 #define DumpCode(f,D) DumpVector(f->code,f->sizecode,sizeof(Instruction),D)
|
| H A D | lundump.c | 94 f->sizecode=n; in LoadCode()
|
| H A D | lobject.h | 242 int sizecode; member
|
| H A D | lparser.c | 362 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func() 363 f->sizecode = fs->pc; in close_func()
|
| H A D | lgc.c | 311 return sizeof(Proto) + sizeof(Instruction) * p->sizecode + in propagatemark()
|
| H A D | lcode.c | 793 luaM_growvector(fs->L, f->code, fs->pc, f->sizecode, Instruction, in luaK_code()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lfunc.c | 117 f->sizecode = 0; in luaF_newproto() 135 luaM_freearray(L, f->code, f->sizecode); in luaF_freeproto()
|
| H A D | lobject.h | 477 int sizecode; member
|
| H A D | lparser.c | 559 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func() 560 f->sizecode = fs->pc; in close_func()
|
| H A D | lcode.c | 214 luaM_growvector(fs->ls->L, f->code, fs->pc, f->sizecode, Instruction, in luaK_code()
|
| H A D | lgc.c | 469 return sizeof(Proto) + sizeof(Instruction) * f->sizecode + in traverseproto()
|