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

12

/freebsd-current/contrib/lua/src/
H A Dlparser.h77 lu_byte t; /* table (register or upvalue) */
80 lu_byte ridx; /* register holding the variable */
99 lu_byte kind;
100 lu_byte ridx; /* register holding the variable */
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 iwthab
[all...]
H A Dlstate.h265 lu_byte currentwhite;
266 lu_byte gcstate; /* state of garbage collector */
267 lu_byte gckind; /* kind of GC running */
268 lu_byte gcstopem; /* stops emergency collections */
269 lu_byte genminormul; /* control for minor generational collections */
270 lu_byte genmajormul; /* control for major generational collections */
271 lu_byte gcstp; /* control whether GC is running */
272 lu_byte gcemergency; /* true if this is an emergency collection */
273 lu_byte gcpause; /* size of pause between successive GCs */
274 lu_byte gcstepmu
[all...]
H A Dlobject.h56 lu_byte ub;
65 #define TValuefields Value value_; lu_byte tt_
288 #define CommonHeader struct GCObject *next; lu_byte tt; lu_byte marked
388 lu_byte extra; /* reserved words for short strings; "has hash" for longs */
389 lu_byte shrlen; /* length for short strings */
517 lu_byte instack; /* whether it is in stack (register) */
518 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */
519 lu_byte kind; /* kind of corresponding variable */
554 lu_byte numparam
[all...]
H A Dlctype.h77 LUAI_DDEC(const lu_byte luai_ctype_[UCHAR_MAX + 2];)
H A Dldump.c54 lu_byte x = (lu_byte)y;
66 lu_byte buff[DIBS];
H A Dlopcodes.c18 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dllimits.h36 typedef unsigned char lu_byte; typedef
143 #define cast_byte(i) cast(lu_byte, (i))
H A Dlctype.c28 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dlstate.c36 lu_byte extra_[LUA_EXTRASPACE];
51 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
H A Dlopcodes.h381 LUAI_DDEC(const lu_byte luaP_opmodes[NUM_OPCODES];)
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. */
642 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) {
1238 lu_byte left; /* left priority for each binary operator */
1239 lu_byte right; /* right priority */
H A Dlundump.c61 static lu_byte loadByte (LoadState *S) {
H A Dlobject.c36 static const lu_byte log_2[256] = { /* log_2[i] = ceil(log2(i - 1)) */
/freebsd-current/sys/contrib/openzfs/module/lua/
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 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 allowhoo
[all...]
H A Dlctype.h50 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p))
69 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
H A Dlobject.h74 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
411 lu_byte extra; /* reserved words for short strings; "has hash" for longs */
445 lu_byte instack; /* whether it is in stack */
446 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */
483 lu_byte numparams; /* number of fixed parameters */
484 lu_byte is_vararg;
485 lu_byte maxstacksize; /* maximum stack used by this function */
511 CommonHeader; lu_byte nupvalues; GCObject *gclist
559 lu_byte flag
[all...]
H A Dlopcodes.c64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
H A Dllimits.h23 typedef unsigned char lu_byte; typedef
91 #define cast_byte(i) cast(lu_byte, (i))
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 Dlctype.c14 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
H A Dlopcodes.h272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
H A Dlobject.c51 static const lu_byte log_2[256] = {
H A Dlparser.c43 lu_byte nactvar; /* # active locals outside the block */
44 lu_byte upval; /* true if some variable in the block is an upvalue */
45 lu_byte isloop; /* true if `block' is a loop */
435 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) {
1023 lu_byte left; /* left priority for each binary operator */
1024 lu_byte right; /* right priority */
H A Dlstate.c73 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))

Completed in 214 milliseconds

12