Home | History | Annotate | Download | only in libyasm

Lines Matching defs:SLIST_FIRST

125 #define SLIST_FIRST(head)       ((head)->slh_first)
128 for ((var) = SLIST_FIRST((head)); \
133 for ((var) = SLIST_FIRST((head)); \
138 for ((varp) = &SLIST_FIRST((head)); \
143 SLIST_FIRST((head)) = NULL; \
152 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
153 SLIST_FIRST((head)) = (elm); \
159 if (SLIST_FIRST((head)) == (elm)) { \
163 struct type *curelm = SLIST_FIRST((head)); \
172 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \