Searched refs:psurvival (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | lgc.c | 1250 GCObject **psurvival; /* to point to first non-dead survival object */ in youngcollection() local 1263 psurvival = sweepgen(L, g, &g->allgc, g->survival, &g->firstold1); in youngcollection() 1265 sweepgen(L, g, psurvival, g->old1, &g->firstold1); in youngcollection() 1267 g->old1 = *psurvival; /* 'survival' survivals are old now */ in youngcollection() 1272 psurvival = sweepgen(L, g, &g->finobj, g->finobjsur, &dummy); in youngcollection() 1274 sweepgen(L, g, psurvival, g->finobjold1, &dummy); in youngcollection() 1276 g->finobjold1 = *psurvival; /* 'survival' survivals are old now */ in youngcollection()
|