Home
last modified time | relevance | path

Searched refs:allgc (Results 1 – 3 of 3) sorted by relevance

/external/lua/src/
Dlgc.c196 lua_assert(g->allgc == o); /* object must be 1st in 'allgc' list! */ in luaC_fix()
198 g->allgc = o->next; /* remove object from 'allgc' list */ in luaC_fix()
213 o->next = g->allgc; in luaC_newobj()
214 g->allgc = o; in luaC_newobj()
792 o->next = g->allgc; /* return it to 'allgc' list */ in udata2finalize()
793 g->allgc = o; in udata2finalize()
915 for (p = &g->allgc; *p != o; p = &(*p)->next) { /* empty */ } in luaC_checkfinalizer()
963 g->sweepgc = sweeplist(L, &g->allgc, 1); in entersweep()
976 sweepwholelist(L, &g->allgc); in luaC_freeallobjects()
Dlstate.c265 L1->next = g->allgc; in lua_newthread()
266 g->allgc = obj2gco(L1); in lua_newthread()
321 g->allgc = g->finobj = g->tobefnz = g->fixedgc = NULL; in lua_newstate()
Dlstate.h151 GCObject *allgc; /* list of all collectable objects */ member