Lines Matching refs:next

60 	struct _spl_ptr_llist_element *next;  member
122 spl_ptr_llist_element *current = llist->head, *next; in spl_ptr_llist_destroy() local
125 next = current->next; in spl_ptr_llist_destroy()
128 current = next; in spl_ptr_llist_destroy()
152 current = current->next; in spl_ptr_llist_offset()
165 elem->next = llist->head; in spl_ptr_llist_unshift()
185 elem->next = NULL; in spl_ptr_llist_push()
190 llist->tail->next = elem; in spl_ptr_llist_push()
210 tail->prev->next = NULL; in spl_ptr_llist_pop()
259 if (head->next) { in spl_ptr_llist_shift()
260 head->next->prev = NULL; in spl_ptr_llist_shift()
265 llist->head = head->next; in spl_ptr_llist_shift()
270 head->next = NULL; in spl_ptr_llist_shift()
278 spl_ptr_llist_element *current = from->head, *next; in spl_ptr_llist_copy() local
281 next = current->next; in spl_ptr_llist_copy()
283 current = next; in spl_ptr_llist_copy()
431 spl_ptr_llist_element *current = intern->llist->head, *next; in spl_dllist_object_get_debug_info() local
452 next = current->next; in spl_dllist_object_get_debug_info()
460 current = next; in spl_dllist_object_get_debug_info()
479 current = current->next; in spl_dllist_object_get_gc()
775 element->prev->next = element->next; in PHP_METHOD()
778 if (element->next) { in PHP_METHOD()
779 element->next->prev = element->prev; in PHP_METHOD()
784 llist->head = element->next; in PHP_METHOD()
851 *traverse_pointer_ptr = old->next; in spl_dllist_it_helper_move_forward()
945 PHP_METHOD(SplDoublyLinkedList, next) in PHP_METHOD() argument
1006 spl_ptr_llist_element *current = intern->llist->head, *next; in PHP_METHOD() local
1023 next = current->next; in PHP_METHOD()
1027 current = next; in PHP_METHOD()
1119 current = current->next; in PHP_METHOD()
1192 elem->next = element; in PHP_METHOD()
1199 element->prev->next = elem; in PHP_METHOD()