Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstate.h74 lu_byte callstatus;
85 lu_byte old_allowhook;
86 lu_byte status;
122 lu_byte currentwhite;
123 lu_byte gcstate; /* state of garbage collector */
124 lu_byte gckind; /* kind of GC running */
125 lu_byte gcrunning; /* true if GC is running */
156 lu_byte status;
166 lu_byte hookmask;
167 lu_byte allowhook;
H A Dlparser.h45 lu_byte t; /* table (register or upvalue) */
46 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */
67 lu_byte nactvar; /* local level where it appears in current block */
109 lu_byte nactvar; /* number of active local variables */
110 lu_byte nups; /* number of upvalues */
111 lu_byte freereg; /* first free register */
H A Dlobject.h76 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
413 lu_byte extra; /* reserved words for short strings; "has hash" for longs */
447 lu_byte instack; /* whether it is in stack */
448 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */
485 lu_byte numparams; /* number of fixed parameters */
486 lu_byte is_vararg;
487 lu_byte maxstacksize; /* maximum stack used by this function */
513 CommonHeader; lu_byte nupvalues; GCObject *gclist
561 lu_byte flags; /* 1<<p means tagmethod(p) is not present */
562 lu_byte lsizenode; /* log2 of size of `node' array */
H A Dlundump.c37 #define LoadByte(S) (lu_byte)LoadChar(S)
192 lu_byte h[LUAC_HEADERSIZE]; in LoadHeader()
193 lu_byte s[LUAC_HEADERSIZE]; in LoadHeader()
244 void luaU_header (lu_byte* h) in luaU_header()
H A Dlctype.c16 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dlundump.h17 LUAI_FUNC void luaU_header (lu_byte* h);
H A Dlgc.h76 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
119 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
H A Dllimits.h25 typedef unsigned char lu_byte; typedef
93 #define cast_byte(i) cast(lu_byte, (i))
H A Dlctype.h69 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
H A Dlopcodes.c64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dldump.c154 lu_byte h[LUAC_HEADERSIZE]; in DumpHeader()
H A Dlopcodes.h272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
H A Dlparser.c45 lu_byte nactvar; /* # active locals outside the block */
46 lu_byte upval; /* true if some variable in the block is an upvalue */
47 lu_byte isloop; /* true if `block' is a loop */
437 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock()
1019 lu_byte left; /* left priority for each binary operator */
1020 lu_byte right; /* right priority */
H A Dlobject.c53 static const lu_byte log_2[256] = { in luaO_ceillog2()
H A Dlstate.c75 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
H A Dldo.c603 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
H A Dlgc.c817 lu_byte oldah = L->allowhook; in GCTM()
H A Dlvm.c62 lu_byte mask = L->hookmask; in traceexec()