Home
last modified time | relevance | path

Searched refs:lu_byte (Results 1 – 17 of 17) sorted by relevance

/minix3/external/mit/lua/dist/src/
H A Dlparser.h50 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 */
H A Dlstate.h84 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;
H A Dlobject.h83 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
323 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 …]
H A Dlctype.c23 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dllimits.h39 typedef unsigned char lu_byte; typedef
118 #define cast_byte(i) cast(lu_byte, (i))
H A Dlgc.h67 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
101 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
H A Dlctype.h75 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
H A Dldump.c57 lu_byte x = (lu_byte)y; in DumpByte()
H A Dlopcodes.c80 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dlundump.c65 static lu_byte LoadByte (LoadState *S) { in LoadByte()
66 lu_byte x; in LoadByte()
H A Dlstate.c59 lu_byte extra_[LUA_EXTRASPACE];
74 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
H A Dlopcodes.h283 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
H A Dlparser.c56 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 */
H A Dlobject.c72 static const lu_byte log_2[256] = { /* log_2[i] = ceil(log2(i - 1)) */ in luaO_ceillog2()
H A Dldebug.c650 lu_byte mask = L->hookmask; in luaG_traceexec()
H A Dldo.c644 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
H A Dlgc.c816 lu_byte oldah = L->allowhook; in GCTM()