Lines Matching refs:prev
33 * sometimes we already know the next/prev entries and we can
38 struct ntfs_list_head *next, *prev;
47 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
53 * @prev:
56 * This is only for internal list manipulation where we know the prev/next
60 struct ntfs_list_head * prev, struct ntfs_list_head * next)
62 next->prev = new;
64 new->prev = prev;
65 prev->next = new;
93 __ntfs_list_add(new, head->prev, head);
98 * @prev:
101 * Delete a list entry by making the prev/next entries point to each other.
103 * This is only for internal list manipulation where we know the prev/next
106 static __inline__ void __ntfs_list_del(struct ntfs_list_head * prev,
109 next->prev = prev;
110 prev->next = next;
122 __ntfs_list_del(entry->prev, entry->next);
131 __ntfs_list_del(entry->prev, entry->next);
155 struct ntfs_list_head *last = list->prev;
158 first->prev = head;
162 at->prev = last;