Lines Matching full:prev
19 * sometimes we already know the next/prev entries and we can
25 struct list_head * next, * prev;
37 ptr->prev = ptr;
44 * the prev/next entries already!
47 struct list_head * prev,
50 next->prev = new_entry;
52 new_entry->prev = prev;
53 prev->next = new_entry;
79 __list_add(new_entry, head->prev, head);
83 * Delete a list entry by making the prev/next entries
87 * the prev/next entries already!
89 static __inline__ void __list_del(struct list_head * prev,
92 next->prev = prev;
93 prev->next = next;
103 __list_del(entry->prev, entry->next);
112 __list_del(entry->prev, entry->next);
135 struct list_head * last = list->prev;
138 first->prev = head;
142 at->prev = last;