Lines Matching refs:el
86 /* insert 'p' after the given element 'el' in a list. If el is NULL then
88 #define DLIST_ADD_AFTER(list, p, el) \
90 if (!(list) || !(el)) { \
93 p->prev = el; \
94 p->next = el->next; \
95 el->next = p; \
127 /* insert all elements from list2 after the given element 'el' in the
129 #define DLIST_ADD_LIST_AFTER(list1, el, list2, type) \
131 if (!(list1) || !(el) || !(list2)) { \
138 (list2)->prev = (el); \
139 tmp->next = (el)->next; \
140 (el)->next = (list2); \