Lines Matching refs:tmp
69 /* hook into the end of the list - needs a tmp pointer */
76 type tmp; \
77 for (tmp = (list); tmp->next; tmp = tmp->next) { \
80 tmp->next = (p); \
82 (p)->prev = tmp; \
102 /* demote an element to the end of the list, needs a tmp pointer */
116 type tmp; \
117 for (tmp = (list1); tmp->next; tmp = tmp->next) { \
120 tmp->next = (list2); \
122 (list2)->prev = tmp; \
134 type tmp; \
135 for (tmp = (list2); tmp->next; tmp = tmp->next) { \
139 tmp->next = (el)->next; \
141 if (tmp->next != NULL) { \
142 tmp->next->prev = tmp; \