Lines Matching refs:QUEUE_PREV
25 #define QUEUE_PREV(q) (*(QUEUE **) &((*(q))[1])) macro
26 #define QUEUE_PREV_NEXT(q) (QUEUE_NEXT(QUEUE_PREV(q)))
27 #define QUEUE_NEXT_PREV(q) (QUEUE_PREV(QUEUE_NEXT(q)))
48 QUEUE_PREV(q) = (q); \
55 QUEUE_NEXT_PREV(n) = QUEUE_PREV(h); \
56 QUEUE_PREV(h) = QUEUE_PREV(n); \
63 QUEUE_PREV(n) = QUEUE_PREV(h); \
66 QUEUE_PREV(h) = QUEUE_PREV(q); \
68 QUEUE_PREV(q) = (n); \
86 QUEUE_PREV(q) = (h); \
95 QUEUE_PREV(q) = QUEUE_PREV(h); \
97 QUEUE_PREV(h) = (q); \
104 QUEUE_NEXT_PREV(q) = QUEUE_PREV(q); \