Searched refs:STAILQ_FIRST (Results 1 – 2 of 2) sorted by relevance
197 #define STAILQ_FIRST(head) ((head)->stqh_first) macro200 for((var) = STAILQ_FIRST((head)); \205 STAILQ_FIRST((head)) = NULL; \206 (head)->stqh_last = &STAILQ_FIRST((head)); \216 if ((STAILQ_NEXT((elm), field) = STAILQ_FIRST((head))) == NULL) \218 STAILQ_FIRST((head)) = (elm); \236 if (STAILQ_FIRST((head)) == (elm)) { \240 struct type *curelm = STAILQ_FIRST((head)); \250 if ((STAILQ_FIRST((head)) = \251 STAILQ_NEXT(STAILQ_FIRST((head)), field)) == NULL) \[all …]
286 #define STAILQ_FIRST(head) ((head)->stqh_first) macro