Lines Matching refs:head
77 struct ntfs_list_head *head) in ntfs_list_add() argument
79 __ntfs_list_add(new, head, head->next); in ntfs_list_add()
91 struct ntfs_list_head *head) in ntfs_list_add_tail() argument
93 __ntfs_list_add(new, head->prev, head); in ntfs_list_add_tail()
139 static __inline__ int ntfs_list_empty(struct ntfs_list_head *head) in ntfs_list_empty() argument
141 return head->next == head; in ntfs_list_empty()
150 struct ntfs_list_head *head) in ntfs_list_splice() argument
156 struct ntfs_list_head *at = head->next; in ntfs_list_splice()
158 first->prev = head; in ntfs_list_splice()
159 head->next = first; in ntfs_list_splice()
180 #define ntfs_list_for_each(pos, head) \ argument
181 for (pos = (head)->next; pos != (head); pos = pos->next)
189 #define ntfs_list_for_each_safe(pos, n, head) \ argument
190 for (pos = (head)->next, n = pos->next; pos != (head); \