Lines Matching refs:prev
41 struct list_head *next, *prev; member
44 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
46 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_hea… in __list_add() argument
48 next->prev = _new; in __list_add()
50 _new->prev = prev; in __list_add()
51 prev->next = _new; in __list_add()
61 __list_add(_new, head->prev, head); in list_add_tail()
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()
91 struct list_head *last = list->prev; in __list_splice()
94 first->prev = head; in __list_splice()
98 at->prev = last; in __list_splice()