Lines Matching refs:containers
416 * PREV_MASK_COLLECTING bit is set for all objects in containers.
419 update_refs(PyGC_Head *containers)
421 PyGC_Head *gc = GC_NEXT(containers);
422 for (; gc != containers; gc = GC_NEXT(gc)) {
466 * for all objects in containers, and is GC_REACHABLE for all tracked gc
467 * objects not in containers. The ones with gc_refs > 0 are directly
468 * reachable from outside containers, and so can't be collected.
471 subtract_refs(PyGC_Head *containers)
474 PyGC_Head *gc = GC_NEXT(containers);
475 for (; gc != containers; gc = GC_NEXT(gc)) {
986 /* Break reference cycles by clearing the containers involved. This is