Lines Matching refs:list2
69 /* Insert list2 after list1 */70 #define insert(list1, list2) \72 list2->next = list1->next; \73 list1->next->prev = list2; \74 list2->prev = list1; \75 list1->next = list2; \