| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lstate.h | 75 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 D | lparser.h | 46 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 D | lobject.h | 75 #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 D | lctype.h | 51 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p)) 70 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
|
| H A D | lctype.c | 15 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
|
| H A D | lgc.h | 77 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m))) 120 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
|
| H A D | llimits.h | 24 typedef unsigned char lu_byte; typedef 92 #define cast_byte(i) cast(lu_byte, (i))
|
| H A D | lopcodes.c | 65 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
|
| H A D | lopcodes.h | 273 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
|
| H A D | lparser.c | 44 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 D | lobject.c | 52 static const lu_byte log_2[256] = { in luaO_ceillog2()
|
| H A D | lstate.c | 74 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lobject.h | 43 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked 203 lu_byte reserved; 249 lu_byte nups; /* number of upvalues */ 250 lu_byte numparams; 251 lu_byte is_vararg; 252 lu_byte maxstacksize; 292 CommonHeader; lu_byte isC; lu_byte nupvalues; GCObject *gclist; \ 340 lu_byte flags; /* 1<<p means tagmethod(p) is not present */ 341 lu_byte lsizenode; /* log2 of size of `node' array */
|
| H A D | lparser.h | 49 lu_byte k; 50 lu_byte info; 72 lu_byte nactvar; /* number of active local variables */
|
| H A D | lstate.h | 72 lu_byte currentwhite; 73 lu_byte gcstate; /* state of garbage collector */ 102 lu_byte status; 116 lu_byte hookmask; 117 lu_byte allowhook;
|
| H A D | llimits.h | 27 typedef unsigned char lu_byte; typedef 78 #define cast_byte(i) cast(lu_byte, (i))
|
| H A D | lgc.h | 27 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m))) 77 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS) 104 LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
|
| H A D | lstate.c | 28 #define fromstate(l) (cast(lu_byte *, (l)) - LUAI_EXTRASPACE) 29 #define tostate(l) (cast(lua_State *, cast(lu_byte *, l) + LUAI_EXTRASPACE))
|
| H A D | lopcodes.c | 61 const lu_byte luaP_opmodes[NUM_OPCODES] = {
|
| H A D | lparser.c | 43 lu_byte nactvar; /* # active locals outside the breakable structure */ 44 lu_byte upval; /* true if some variable in the block is an upvalue */ 45 lu_byte isbreakable; /* true if `block' is a loop */ 285 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) { in enterblock() 811 lu_byte left; /* left priority for each binary operator */ 812 lu_byte right; /* right priority */
|
| H A D | lobject.c | 55 static const lu_byte log_2[256] = { in luaO_log2()
|
| H A D | lopcodes.h | 252 LUAI_DATA const lu_byte luaP_opmodes[NUM_OPCODES];
|
| H A D | lundump.c | 44 #define LoadByte(S) (lu_byte)LoadChar(S)
|
| H A D | lgc.c | 460 lu_byte oldah = L->allowhook; in GCTM() 685 void luaC_link (lua_State *L, GCObject *o, lu_byte tt) { in luaC_link()
|
| H A D | ldo.c | 461 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
|