roots              48 Zend/zend_gc.c 	gc_globals->roots.next = &gc_globals->roots;
roots              49 Zend/zend_gc.c 	gc_globals->roots.prev = &gc_globals->roots;
roots             106 Zend/zend_gc.c 	GC_G(roots).next = &GC_G(roots);
roots             107 Zend/zend_gc.c 	GC_G(roots).prev = &GC_G(roots);
roots             173 Zend/zend_gc.c 			newRoot->next = GC_G(roots).next;
roots             174 Zend/zend_gc.c 			newRoot->prev = &GC_G(roots);
roots             175 Zend/zend_gc.c 			GC_G(roots).next->prev = newRoot;
roots             176 Zend/zend_gc.c 			GC_G(roots).next = newRoot;
roots             227 Zend/zend_gc.c 			newRoot->next = GC_G(roots).next;
roots             228 Zend/zend_gc.c 			newRoot->prev = &GC_G(roots);
roots             229 Zend/zend_gc.c 			GC_G(roots).next->prev = newRoot;
roots             230 Zend/zend_gc.c 			GC_G(roots).next = newRoot;
roots             475 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             477 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             611 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             613 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             751 Zend/zend_gc.c 	gc_root_buffer *current = GC_G(roots).next;
roots             753 Zend/zend_gc.c 	while (current != &GC_G(roots)) {
roots             781 Zend/zend_gc.c 	if (GC_G(roots).next != &GC_G(roots)) {
roots             104 Zend/zend_gc.h 	gc_root_buffer    roots;			/* list of possible roots of cycles */