Searched defs:GCObject (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstate.h60 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 *allwea
185 union GCObject { union
[all...]
H A Dlobject.h70 typedef union GCObject GCObject; typedef in typeref:union: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 *, (
[all...]

Completed in 647 milliseconds