Lines Matching refs:__next
806 queue_entry_t __next; \
808 __next = (head)->next; \
809 if ((head) == __next) { \
813 ((type)(void *)__next)->field.prev = \
816 (elt)->field.next = __next; \
881 queue_entry_t __next; \
889 __next = (elt)->field.next = (head)->next; \
890 ((type)(void *)__next)->field.prev = \
901 __next = (elt)->field.next = (cur)->field.next; \
902 ((type)(void *)__next)->field.prev = \
932 queue_entry_t __next, __prev; \
934 __next = (elt)->field.next; \
937 if ((head) == __next) \
940 ((type)(void *)__next)->field.prev = __prev; \
943 (head)->next = __next; \
945 ((type)(void *)__prev)->field.next = __next; \
964 queue_entry_t __next; \
967 __next = (entry)->field.next; \
969 if ((head) == __next) \
972 ((type)(void *)(__next))->field.prev = (head); \
973 (head)->next = __next; \