Lines Matching defs:list
31 #define INIT_LIST(list) \ argument
45 #define HEAD(list) ((list).head) argument
46 #define TAIL(list) ((list).tail) argument
47 #define EMPTY(list) ((list).head == NULL) 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
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