Lines Matching defs:old
748 * weakrefs with callbacks may be moved into the `old` generation. Objects
749 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
754 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
903 gc_list_move(gc, old);
925 * merged into the old list regardless.
930 PyGC_Head *finalizers, PyGC_Head *old)
947 gc_list_merge(finalizers, old);
992 PyGC_Head *collectable, PyGC_Head *old)
1024 gc_list_move(gc, old);
1171 // Move the resurrected objects to the old generation for future collection.
1186 PyGC_Head *old; /* next older generation */
1221 old = GEN_HEAD(gcstate, generation+1);
1223 old = young;
1224 validate_list(old, collecting_clear_unreachable_clear);
1230 if (young != old) {
1234 gc_list_merge(young, old);
1268 m += handle_weakrefs(&unreachable, old);
1270 validate_list(old, collecting_clear_unreachable_clear);
1280 handle_resurrected_objects(&unreachable, &final_unreachable, old);
1287 delete_garbage(tstate, gcstate, &final_unreachable, old);
1307 handle_legacy_finalizers(tstate, gcstate, &finalizers, old);
1308 validate_list(old, collecting_clear_unreachable_clear);