tqe_next          327 libdb/queue.h  	struct type *tqe_next;	/* next element */			\
tqe_next          349 libdb/queue.h  #define	TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
tqe_next          360 libdb/queue.h  	if (((elm)->field.tqe_next = (head)->tqh_first) != NULL)	\
tqe_next          362 libdb/queue.h  		    &(elm)->field.tqe_next;				\
tqe_next          364 libdb/queue.h  		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          370 libdb/queue.h  	(elm)->field.tqe_next = NULL;					\
tqe_next          373 libdb/queue.h  	(head)->tqh_last = &(elm)->field.tqe_next;			\
tqe_next          377 libdb/queue.h  	if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
tqe_next          378 libdb/queue.h  		(elm)->field.tqe_next->field.tqe_prev = 		\
tqe_next          379 libdb/queue.h  		    &(elm)->field.tqe_next;				\
tqe_next          381 libdb/queue.h  		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          382 libdb/queue.h  	(listelm)->field.tqe_next = (elm);				\
tqe_next          383 libdb/queue.h  	(elm)->field.tqe_prev = &(listelm)->field.tqe_next;		\
tqe_next          388 libdb/queue.h  	(elm)->field.tqe_next = (listelm);				\
tqe_next          390 libdb/queue.h  	(listelm)->field.tqe_prev = &(elm)->field.tqe_next;		\
tqe_next          394 libdb/queue.h  	if (((elm)->field.tqe_next) != NULL)				\
tqe_next          395 libdb/queue.h  		(elm)->field.tqe_next->field.tqe_prev = 		\
tqe_next          399 libdb/queue.h  	*(elm)->field.tqe_prev = (elm)->field.tqe_next;			\