Lines Matching defs:link
29 #define INIT_LINK_TYPE(elt, link, type) \ argument
34 #define INIT_LINK(elt, link) \ argument
36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ argument
43 #define PREPEND(list, elt, link) \ argument
55 #define APPEND(list, elt, link) \ argument
67 #define UNLINK_TYPE(list, elt, link, type) \ argument
84 #define UNLINK(list, elt, link) \ argument
87 #define PREV(elt, link) ((elt)->link.prev) argument
88 #define NEXT(elt, link) ((elt)->link.next) argument
90 #define INSERT_BEFORE(list, before, elt, link) \ argument
103 #define INSERT_AFTER(list, after, elt, link) \ argument
116 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument
117 #define DEQUEUE(list, elt, link) UNLINK(list, elt, link) argument