Lines Matching defs:prev
37 * sometimes we already know the next/prev entries and we can
43 struct list_head *next, *prev;
50 list->prev = list;
57 * the prev/next entries already!
61 struct list_head *prev, struct list_head *next)
63 next->prev = new;
65 new->prev = prev;
66 prev->next = new;
70 struct list_head *prev, struct list_head *next);
83 __list_add(new, head->prev, head);