Searched defs:elt (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
D | list.h | 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 [all …]
|