Lines Matching defs:link
35 #define INIT_LINK_TYPE(elt, link, type) \ argument
40 #define INIT_LINK(elt, link) \ argument
42 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ argument
49 #define PREPEND(list, elt, link) \ argument
61 #define APPEND(list, elt, link) \ argument
73 #define UNLINK_TYPE(list, elt, link, type) \ argument
90 #define UNLINK(list, elt, link) \ argument
93 #define PREV(elt, link) ((elt)->link.prev) argument
94 #define NEXT(elt, link) ((elt)->link.next) argument
96 #define INSERT_BEFORE(list, before, elt, link) \ argument
109 #define INSERT_AFTER(list, after, elt, link) \ argument
122 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument
123 #define DEQUEUE(list, elt, link) UNLINK(list, elt, link) argument