Searched refs:psurvival (Results 1 – 1 of 1) sorted by relevance
/external/lua/src/ |
D | lgc.c | 1219 GCObject **psurvival; /* to point to first non-dead survival object */ in youngcollection() local 1232 psurvival = sweepgen(L, g, &g->allgc, g->survival, &g->firstold1); in youngcollection() 1234 sweepgen(L, g, psurvival, g->old1, &g->firstold1); in youngcollection() 1236 g->old1 = *psurvival; /* 'survival' survivals are old now */ in youngcollection() 1241 psurvival = sweepgen(L, g, &g->finobj, g->finobjsur, &dummy); in youngcollection() 1243 sweepgen(L, g, psurvival, g->finobjold1, &dummy); in youngcollection() 1245 g->finobjold1 = *psurvival; /* 'survival' survivals are old now */ in youngcollection()
|