Home
last modified time | relevance | path

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

/external/lua/src/
Dlgc.c246 lua_assert(g->allgc == o); /* object must be 1st in 'allgc' list! */ in luaC_fix()
249 g->allgc = o->next; /* remove object from 'allgc' list */ in luaC_fix()
264 o->next = g->allgc; in luaC_newobj()
265 g->allgc = o; in luaC_newobj()
876 o->next = g->allgc; /* return it to 'allgc' list */ in udata2finalize()
877 g->allgc = o; in udata2finalize()
1020 for (p = &g->allgc; *p != o; p = &(*p)->next) { /* empty */ } in luaC_checkfinalizer()
1232 psurvival = sweepgen(L, g, &g->allgc, g->survival, &g->firstold1); in youngcollection()
1237 g->survival = g->allgc; /* all news are survivals */ in youngcollection()
1263 sweep2old(L, &g->allgc); in atomic2gen()
[all …]
Dlstate.c332 L1->next = g->allgc; in lua_newthread()
333 g->allgc = obj2gco(L1); in lua_newthread()
397 g->allgc = obj2gco(L); /* by now, only object is the main thread */ in lua_newstate()
Dlstate.h272 GCObject *allgc; /* list of all collectable objects */ member