Lines Matching refs:tqe_next
379 qual type *tqe_next; /* next element */ \
393 if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \
395 &(elm)->field.tqe_next; \
397 (head)->tqh_last = &(elm)->field.tqe_next; \
403 (elm)->field.tqe_next = NULL; \
406 (head)->tqh_last = &(elm)->field.tqe_next; \
410 if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
411 (elm)->field.tqe_next->field.tqe_prev = \
412 &(elm)->field.tqe_next; \
414 (head)->tqh_last = &(elm)->field.tqe_next; \
415 (listelm)->field.tqe_next = (elm); \
416 (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \
421 (elm)->field.tqe_next = (listelm); \
423 (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \
427 if (((elm)->field.tqe_next) != NULL) \
428 (elm)->field.tqe_next->field.tqe_prev = \
432 *(elm)->field.tqe_prev = (elm)->field.tqe_next; \
438 (var) = ((var)->field.tqe_next))
459 #define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)