Lines Matching defs:list
23 #define INIT_LIST(list) \ argument
37 #define HEAD(list) ((list).head) argument
38 #define TAIL(list) ((list).tail) argument
39 #define EMPTY(list) ((list).head == NULL) argument
41 #define PREPEND(list, elt, link) \ argument
53 #define APPEND(list, elt, link) \ argument
65 #define UNLINK_TYPE(list, elt, link, type) \ argument
82 #define UNLINK(list, elt, link) \ argument
88 #define INSERT_BEFORE(list, before, elt, link) \ argument
101 #define INSERT_AFTER(list, after, elt, link) \ argument
114 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument
115 #define DEQUEUE(list, elt, link) UNLINK(list, elt, link) argument