HomeSort by relevance Sort by last modified time
    Searched defs:GCObject (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstate.h 60 GCObject **hash;
127 GCObject *allgc; /* list of all collectable objects */
128 GCObject *finobj; /* list of collectable objects with finalizers */
129 GCObject **sweepgc; /* current position of sweep in list 'allgc' */
130 GCObject **sweepfin; /* current position of sweep in list 'finobj' */
131 GCObject *gray; /* list of gray objects */
132 GCObject *grayagain; /* list of objects to be traversed atomically */
133 GCObject *weak; /* list of tables with weak values */
134 GCObject *ephemeron; /* list of ephemeron tables (weak keys) */
135 GCObject *allweak; /* list of all-weak tables *
    [all...]
lobject.h 70 typedef union GCObject GCObject;
77 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
202 { TValue *io=(obj); GCObject *i_g=(x); \
208 val_(io).gc=cast(GCObject *, x_); settt_(io, ctb(x_->tsv.tt)); \
213 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TUSERDATA)); \
218 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TTHREAD)); \
223 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TLCL)); \
228 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TCCL)); \
233 val_(io).gc=cast(GCObject *, (x)); settt_(io, ctb(LUA_TTABLE));
    [all...]
  /external/lua/src/
lobject.h 72 typedef struct GCObject GCObject;
79 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
85 struct GCObject {
101 GCObject *gc; /* collectable objects */
222 { TValue *io = (obj); GCObject *i_g=(x); \
428 GCObject *gclist;
444 CommonHeader; lu_byte nupvalues; GCObject *gclist
506 GCObject *gclist;

Completed in 349 milliseconds