Home
last modified time | relevance | path

Searched refs:QUEUE_PREV (Results 1 – 1 of 1) sorted by relevance

/third_party/libuv/src/
Dqueue.h25 #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); \
[all …]