Lines Matching refs:LIST_FIRST
326 if (LIST_FIRST((head)) != NULL && \
327 LIST_FIRST((head))->field.le_prev != \
328 &LIST_FIRST((head))) \
351 #define LIST_FIRST(head) ((head)->lh_first) macro
354 for ((var) = LIST_FIRST((head)); \
359 for ((var) = LIST_FIRST((head)); \
364 LIST_FIRST((head)) = NULL; \
386 if ((LIST_NEXT((elm), field) = LIST_FIRST((head))) != NULL) \
387 LIST_FIRST((head))->field.le_prev = &LIST_NEXT((elm), field);\
388 LIST_FIRST((head)) = (elm); \
389 (elm)->field.le_prev = &LIST_FIRST((head)); \