Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/lua/src/
H A Dlparser.h77 lu_byte t; /* table (register or upvalue) */
80 lu_byte sidx; /* index in the stack */
99 lu_byte kind;
100 lu_byte sidx; /* index of the variable in the stack */
114 lu_byte nactvar; /* number of active variables in that position */
115 lu_byte close; /* goto that escapes upvalues */
158 lu_byte nactvar; /* number of active local variables */
159 lu_byte nups; /* number of upvalues */
160 lu_byte freereg; /* first free register */
161 lu_byte iwthabs; /* instructions issued since last absolute line info */
[all …]
H A Dlstate.h230 lu_byte currentwhite;
231 lu_byte gcstate; /* state of garbage collector */
232 lu_byte gckind; /* kind of GC running */
233 lu_byte genminormul; /* control for minor generational collections */
235 lu_byte gcrunning; /* true if GC is running */
236 lu_byte gcemergency; /* true if this is an emergency collection */
237 lu_byte gcpause; /* size of pause between successive GCs */
238 lu_byte gcstepmul; /* GC "speed" */
239 lu_byte gcstepsize; /* (log2 of) GC granularity */
275 lu_byte status;
[all …]
H A Dlobject.h63 #define TValuefields Value value_; lu_byte tt_
266 #define CommonHeader struct GCObject *next; lu_byte tt; lu_byte marked
367 lu_byte shrlen; /* length for short strings */
495 lu_byte instack; /* whether it is in stack (register) */
497 lu_byte kind; /* kind of corresponding variable */
532 lu_byte numparams; /* number of fixed (named) parameters */
533 lu_byte is_vararg;
622 CommonHeader; lu_byte nupvalues; GCObject *gclist
679 lu_byte key_tt; /* key type */
716 lu_byte flags; /* 1<<p means tagmethod(p) is not present */
[all …]
H A Dldump.c53 lu_byte x = (lu_byte)y; in dumpByte()
62 lu_byte buff[DIBS]; in dumpSize()
H A Dllimits.h36 typedef unsigned char lu_byte; typedef
130 #define cast_byte(i) cast(lu_byte, (i))
H A Dlctype.h77 LUAI_DDEC(const lu_byte luai_ctype_[UCHAR_MAX + 2];)
H A Dlctype.c28 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dlopcodes.c18 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dlstate.c36 lu_byte extra_[LUA_EXTRASPACE];
51 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
H A Dlparser.c53 lu_byte nactvar; /* # active locals outside the block */
54 lu_byte upval; /* true if some variable in the block is an upvalue */
55 lu_byte isloop; /* true if 'block' is a loop */
56 lu_byte insidetbc; /* true if inside the scope of a to-be-closed var. */
630 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock()
1226 lu_byte left; /* left priority for each binary operator */
1227 lu_byte right; /* right priority */
H A Dlopcodes.h368 LUAI_DDEC(const lu_byte luaP_opmodes[NUM_OPCODES];)
H A Dlundump.c61 static lu_byte loadByte (LoadState *S) { in loadByte()
H A Dlobject.c36 static const lu_byte log_2[256] = { /* log_2[i] = ceil(log2(i - 1)) */ in luaO_ceillog2()
/freebsd-13.1/sys/contrib/openzfs/module/lua/
H A Dlstate.h75 lu_byte callstatus;
86 lu_byte old_allowhook;
87 lu_byte status;
123 lu_byte currentwhite;
124 lu_byte gcstate; /* state of garbage collector */
125 lu_byte gckind; /* kind of GC running */
126 lu_byte gcrunning; /* true if GC is running */
157 lu_byte status;
167 lu_byte hookmask;
168 lu_byte allowhook;
[all …]
H A Dlparser.h46 lu_byte t; /* table (register or upvalue) */
47 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */
68 lu_byte nactvar; /* local level where it appears in current block */
110 lu_byte nactvar; /* number of active local variables */
111 lu_byte nups; /* number of upvalues */
112 lu_byte freereg; /* first free register */
H A Dlobject.h75 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
412 lu_byte extra; /* reserved words for short strings; "has hash" for longs */
446 lu_byte instack; /* whether it is in stack */
447 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */
484 lu_byte numparams; /* number of fixed parameters */
485 lu_byte is_vararg;
486 lu_byte maxstacksize; /* maximum stack used by this function */
512 CommonHeader; lu_byte nupvalues; GCObject *gclist
560 lu_byte flags; /* 1<<p means tagmethod(p) is not present */
561 lu_byte lsizenode; /* log2 of size of `node' array */
H A Dlctype.h51 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p))
70 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
H A Dlctype.c15 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dlgc.h77 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
120 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
H A Dllimits.h24 typedef unsigned char lu_byte; typedef
92 #define cast_byte(i) cast(lu_byte, (i))
H A Dlopcodes.c65 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dlopcodes.h273 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
H A Dlparser.c44 lu_byte nactvar; /* # active locals outside the block */
45 lu_byte upval; /* true if some variable in the block is an upvalue */
46 lu_byte isloop; /* true if `block' is a loop */
436 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock()
1024 lu_byte left; /* left priority for each binary operator */
1025 lu_byte right; /* right priority */
H A Dlobject.c52 static const lu_byte log_2[256] = { in luaO_ceillog2()
H A Dlstate.c74 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))

12