Lines Matching refs:__next
785 queue_entry_t __next; \
787 __next = (head)->next; \
788 if ((head) == __next) { \
792 ((type)(void *)__next)->field.prev = \
795 (elt)->field.next = __next; \
860 queue_entry_t __next; \
868 __next = (elt)->field.next = (head)->next; \
869 ((type)(void *)__next)->field.prev = \
880 __next = (elt)->field.next = (cur)->field.next; \
881 ((type)(void *)__next)->field.prev = \
911 queue_entry_t __next, __prev; \
913 __next = (elt)->field.next; \
916 if ((head) == __next) \
919 ((type)(void *)__next)->field.prev = __prev; \
922 (head)->next = __next; \
924 ((type)(void *)__prev)->field.next = __next; \
943 queue_entry_t __next; \
946 __next = (entry)->field.next; \
948 if ((head) == __next) \
951 ((type)(void *)(__next))->field.prev = (head); \
952 (head)->next = __next; \