HomeSort by relevance Sort by last modified time
    Searched refs:lu_byte (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.h 45 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 */
lundump.h 17 LUAI_FUNC void luaU_header (lu_byte* h);
lstate.h 74 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
    [all...]
lobject.h 77 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
414 lu_byte extra; /* reserved words for short strings; "has hash" for longs */
448 lu_byte instack; /* whether it is in stack */
449 lu_byte idx; /* index of upvalue (in stack or in outer function's list) */
486 lu_byte numparams; /* number of fixed parameters */
487 lu_byte is_vararg;
488 lu_byte maxstacksize; /* maximum stack used by this function */
514 CommonHeader; lu_byte nupvalues; GCObject *gclist
562 lu_byte flags; /* 1<<p means tagmethod(p) is not present *
    [all...]
lctype.h 71 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
lundump.c 37 #define LoadByte(S) (lu_byte)LoadChar(S)
192 lu_byte h[LUAC_HEADERSIZE];
193 lu_byte s[LUAC_HEADERSIZE];
244 void luaU_header (lu_byte* h)
lopcodes.c 64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
lgc.h 76 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
119 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
llimits.h 27 typedef unsigned char lu_byte; typedef
95 #define cast_byte(i) cast(lu_byte, (i))
lctype.c 16 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
ldump.c 154 lu_byte h[LUAC_HEADERSIZE];
lobject.c 56 static const lu_byte log_2[256] = {
lopcodes.h 272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
lparser.c 46 lu_byte nactvar; /* # active locals outside the block */
47 lu_byte upval; /* true if some variable in the block is an upvalue */
48 lu_byte isloop; /* true if `block' is a loop */
438 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) {
1020 lu_byte left; /* left priority for each binary operator */
1021 lu_byte right; /* right priority */
    [all...]
lstate.c 77 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
ldo.c 591 lu_byte old_allowhooks = L->allowhook;
lgc.c 810 lu_byte oldah = L->allowhook;
    [all...]
lvm.c 62 lu_byte mask = L->hookmask;

Completed in 134 milliseconds