tqe_next          340 libdb/queue.h  	struct type *tqe_next;	/**< next element */			\
tqe_next          364 libdb/queue.h  #define	TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
tqe_next          375 libdb/queue.h  	if (((elm)->field.tqe_next = (head)->tqh_first) != NULL)	\
tqe_next          377 libdb/queue.h  		    &(elm)->field.tqe_next;				\
tqe_next          379 libdb/queue.h  		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          385 libdb/queue.h  	(elm)->field.tqe_next = NULL;					\
tqe_next          388 libdb/queue.h  	(head)->tqh_last = &(elm)->field.tqe_next;			\
tqe_next          392 libdb/queue.h  	if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
tqe_next          393 libdb/queue.h  		(elm)->field.tqe_next->field.tqe_prev = 		\
tqe_next          394 libdb/queue.h  		    &(elm)->field.tqe_next;				\
tqe_next          396 libdb/queue.h  		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          397 libdb/queue.h  	(listelm)->field.tqe_next = (elm);				\
tqe_next          398 libdb/queue.h  	(elm)->field.tqe_prev = &(listelm)->field.tqe_next;		\
tqe_next          403 libdb/queue.h  	(elm)->field.tqe_next = (listelm);				\
tqe_next          405 libdb/queue.h  	(listelm)->field.tqe_prev = &(elm)->field.tqe_next;		\
tqe_next          409 libdb/queue.h  	if (((elm)->field.tqe_next) != NULL)				\
tqe_next          410 libdb/queue.h  		(elm)->field.tqe_next->field.tqe_prev = 		\
tqe_next          414 libdb/queue.h  	*(elm)->field.tqe_prev = (elm)->field.tqe_next;			\