slh_first 96 sys/queue.h struct type *slh_first; /* first element */ \ slh_first 110 sys/queue.h #define SLIST_FIRST(head) ((head)->slh_first) slh_first 138 sys/queue.h (elm)->field.sle_next = (head)->slh_first; \ slh_first 139 sys/queue.h (head)->slh_first = (elm); \ slh_first 147 sys/queue.h (head)->slh_first = (head)->slh_first->field.sle_next; \ slh_first 151 sys/queue.h if ((head)->slh_first == (elm)) { \ slh_first 154 sys/queue.h struct type *curelm = (head)->slh_first; \