Searched refs:lu_byte (Results 1 – 17 of 17) sorted by relevance
50 lu_byte t; /* table (register or upvalue) */51 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */75 lu_byte nactvar; /* local level where it appears in current block */116 lu_byte nactvar; /* number of active local variables */117 lu_byte nups; /* number of upvalues */118 lu_byte freereg; /* first free register */
84 lu_byte callstatus;121 lu_byte currentwhite;122 lu_byte gcstate; /* state of garbage collector */123 lu_byte gckind; /* kind of GC running */124 lu_byte gcrunning; /* true if GC is running */155 lu_byte status;174 lu_byte hookmask;175 lu_byte allowhook;
83 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked323 lu_byte extra; /* reserved words for short strings; "has hash" for longs */324 lu_byte shrlen; /* length for short strings */366 lu_byte ttuv_; /* user value's tag */406 lu_byte instack; /* whether it is in stack (register) */407 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */427 lu_byte numparams; /* number of fixed parameters */428 lu_byte is_vararg;429 lu_byte maxstacksize; /* number of registers needed by this function */462 CommonHeader; lu_byte nupvalues; GCObject *gclist[all …]
23 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
39 typedef unsigned char lu_byte; typedef118 #define cast_byte(i) cast(lu_byte, (i))
67 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))101 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
75 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
57 lu_byte x = (lu_byte)y; in DumpByte()
80 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
65 static lu_byte LoadByte (LoadState *S) { in LoadByte()66 lu_byte x; in LoadByte()
59 lu_byte extra_[LUA_EXTRASPACE];74 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
283 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
56 lu_byte nactvar; /* # active locals outside the block */57 lu_byte upval; /* true if some variable in the block is an upvalue */58 lu_byte isloop; /* true if 'block' is a loop */438 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock()1030 lu_byte left; /* left priority for each binary operator */1031 lu_byte right; /* right priority */
72 static const lu_byte log_2[256] = { /* log_2[i] = ceil(log2(i - 1)) */ in luaO_ceillog2()
650 lu_byte mask = L->hookmask; in luaG_traceexec()
644 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
816 lu_byte oldah = L->allowhook; in GCTM()