Searched refs:firstold1 (Results 1 – 3 of 3) sorted by relevance
/external/lua/src/ |
D | lgc.c | 882 g->firstold1 = o; /* it is the first OLD1 object in the list */ in udata2finalize() 997 checkpointer(&g->firstold1, o); in correctpointers() 1222 if (g->firstold1) { /* are there regular OLD1 objects? */ in youngcollection() 1223 markold(g, g->firstold1, g->reallyold); /* mark them */ in youngcollection() 1224 g->firstold1 = NULL; /* no more OLD1 objects (for now) */ in youngcollection() 1232 psurvival = sweepgen(L, g, &g->allgc, g->survival, &g->firstold1); in youngcollection() 1234 sweepgen(L, g, psurvival, g->old1, &g->firstold1); in youngcollection() 1266 g->firstold1 = NULL; /* there are no OLD1 objects anywhere */ in atomic2gen()
|
D | lstate.h | 286 GCObject *firstold1; /* first OLD1 object in the list (if any) */ member
|
D | lstate.c | 416 g->firstold1 = g->survival = g->old1 = g->reallyold = NULL; in lua_newstate()
|