Lines Matching full:next
41 struct list_head *next, *prev; member
44 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
46 …T_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) in __list_add() argument
48 next->prev = _new; in __list_add()
49 _new->next = next; in __list_add()
51 prev->next = _new; in __list_add()
56 __list_add(_new, head, head->next); in list_add()
64 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) in __list_del() argument
66 next->prev = prev; in __list_del()
67 prev->next = next; in __list_del()
72 __list_del(entry->prev, entry->next); in list_del()
77 __list_del(entry->prev, entry->next); in list_del_init()
83 HPT_ASSERT(!(head->next==head && head->prev!=head)); in list_empty()
84 return head->next == head; in list_empty()
90 struct list_head *first = list->next; in __list_splice()
92 struct list_head *at = head->next; in __list_splice()
95 head->next = first; in __list_splice()
97 last->next = at; in __list_splice()
119 for (pos = (head)->next; pos != (head); pos = pos->next)
122 for (pos = (head)->next, n = pos->next; pos != (head); \
123 pos = n, n = pos->next)
126 ((type *)((char *)((attached)->next)-(HPT_UPTR)(&((type *)0)->member)))