Lines Matching defs:list
27 #define INIT_LIST(list) \ argument
40 #define HEAD(list) ((list).head) argument
41 #define TAIL(list) ((list).tail) argument
42 #define EMPTY(list) ((list).head == NULL) argument
44 #define PREPEND(list, elt, link) \ argument
56 #define APPEND(list, elt, link) \ argument
68 #define UNLINK_TYPE(list, elt, link, type) \ argument
85 #define UNLINK(list, elt, link) \ argument
91 #define INSERT_BEFORE(list, before, elt, link) \ argument
104 #define INSERT_AFTER(list, after, elt, link) \ argument
117 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument
118 #define DEQUEUE(list, elt, link) UNLINK(list, elt, link) argument