roots             141 Zend/zend_gc.c 	gc_globals->roots.next = &gc_globals->roots;
roots             142 Zend/zend_gc.c 	gc_globals->roots.prev = &gc_globals->roots;
roots             193 Zend/zend_gc.c 	GC_G(roots).next = &GC_G(roots);
roots             194 Zend/zend_gc.c 	GC_G(roots).prev = &GC_G(roots);
roots             269 Zend/zend_gc.c 	newRoot->next = GC_G(roots).next;
roots             270 Zend/zend_gc.c 	newRoot->prev = &GC_G(roots);
roots             271 Zend/zend_gc.c 	GC_G(roots).next->prev = newRoot;
roots             272 Zend/zend_gc.c 	GC_G(roots).next = newRoot;
roots             527 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             529 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             636 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             638 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             690 Zend/zend_gc.c 		buf->next = GC_G(roots).next;
roots             691 Zend/zend_gc.c 		buf->prev = &GC_G(roots);
roots             692 Zend/zend_gc.c 		GC_G(roots).next->prev = buf;
roots             693 Zend/zend_gc.c 		GC_G(roots).next = buf;
roots             837 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             840 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             849 Zend/zend_gc.c 	current = GC_G(roots).next;
roots             850 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             859 Zend/zend_gc.c 	if (GC_G(roots).next != &GC_G(roots)) {
roots             862 Zend/zend_gc.c 			GC_G(to_free).next = GC_G(roots).next;
roots             863 Zend/zend_gc.c 			GC_G(to_free).prev = GC_G(roots).prev;
roots             868 Zend/zend_gc.c 			GC_G(to_free).prev->next = GC_G(roots).next;
roots             869 Zend/zend_gc.c 			GC_G(roots).next->prev = GC_G(to_free).prev;
roots             870 Zend/zend_gc.c 			GC_G(roots).prev->next = &GC_G(to_free);
roots             871 Zend/zend_gc.c 			GC_G(to_free).prev = GC_G(roots).prev;
roots             874 Zend/zend_gc.c 		GC_G(roots).next = &GC_G(roots);
roots             875 Zend/zend_gc.c 		GC_G(roots).prev = &GC_G(roots);
roots             984 Zend/zend_gc.c 	if (GC_G(roots).next != &GC_G(roots)) {
roots              76 Zend/zend_gc.h 	gc_root_buffer    roots;			/* list of possible roots of cycles */