Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dlgc.c894 g->firstold1 = o; /* it is the first OLD1 object in the list */ in udata2finalize()
1009 checkpointer(&g->firstold1, o); in correctpointers()
1253 if (g->firstold1) { /* are there regular OLD1 objects? */ in youngcollection()
1254 markold(g, g->firstold1, g->reallyold); /* mark them */ in youngcollection()
1255 g->firstold1 = NULL; /* no more OLD1 objects (for now) */ in youngcollection()
1263 psurvival = sweepgen(L, g, &g->allgc, g->survival, &g->firstold1); in youngcollection()
1265 sweepgen(L, g, psurvival, g->old1, &g->firstold1); in youngcollection()
1297 g->firstold1 = NULL; /* there are no OLD1 objects anywhere */ in atomic2gen()
H A Dlstate.h290 GCObject *firstold1; /* first OLD1 object in the list (if any) */ member
H A Dlstate.c391 g->firstold1 = g->survival = g->old1 = g->reallyold = NULL; in lua_newstate()