Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
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 */
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;
Dlobject.h77 #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 */
563 lu_byte lsizenode; /* log2 of size of `node' array */
Dlctype.c16 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
Dlundump.h17 LUAI_FUNC void luaU_header (lu_byte* h);
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()
Dlctype.h71 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
Dlgc.h76 #define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
119 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
Dllimits.h27 typedef unsigned char lu_byte; typedef
95 #define cast_byte(i) cast(lu_byte, (i))
Dlopcodes.c64 LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
Dlparser.c46 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) { in enterblock()
669 fs->freereg = (lu_byte)reg; /* free registers */ in recfield()
863 fs->freereg = (lu_byte)base + 1; /* call remove function and arguments and leaves in funcargs()
1020 lu_byte left; /* left priority for each binary operator */
1021 lu_byte right; /* right priority */
1118 lh->v.u.ind.t = (lu_byte)extra; /* previous assignment will use safe copy */ in check_conflict()
1156 ls->fs->freereg -= (lu_byte)(nexps - nvars); /* remove extra values */ in assignment()
Dldump.c154 lu_byte h[LUAC_HEADERSIZE]; in DumpHeader()
Dlopcodes.h272 LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
Dlobject.c56 static const lu_byte log_2[256] = { in luaO_ceillog2()
Dlgc.c220 gch(o)->tt = (lu_byte)tt; in luaC_newobj()
817 lu_byte oldah = L->allowhook; in GCTM()
826 g->gcrunning = (lu_byte)running; /* restore state */ in GCTM()
1212 g->gckind = (lu_byte)origkind; in luaC_fullgc()
Dlcode.c273 fs->freereg += (lu_byte)n; in luaK_reserveregs()
705 t->u.ind.t = (lu_byte)t->u.info; in luaK_indexed()
879 fs->freereg = (lu_byte)base + 1; /* free registers with list values */ in luaK_setlist()
Dlstate.c77 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
Dldo.c475 ci->u.c.status = (lu_byte)status; /* (here it is) */ in recover()
599 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
Dlvm.c62 lu_byte mask = L->hookmask; in traceexec()