stqe_next         187 libdb/queue.h  	struct type *stqe_next;	/**< next element */			\
stqe_next         211 libdb/queue.h  	for((var) = (head)->stqh_first; (var); (var) = (var)->field.stqe_next)
stqe_next         214 libdb/queue.h  	if (((elm)->field.stqe_next = (head)->stqh_first) == NULL)	\
stqe_next         215 libdb/queue.h  		(head)->stqh_last = &(elm)->field.stqe_next;		\
stqe_next         220 libdb/queue.h  	(elm)->field.stqe_next = NULL;					\
stqe_next         222 libdb/queue.h  	(head)->stqh_last = &(elm)->field.stqe_next;			\
stqe_next         226 libdb/queue.h  	if (((elm)->field.stqe_next = (tqelm)->field.stqe_next) == NULL)\
stqe_next         227 libdb/queue.h  		(head)->stqh_last = &(elm)->field.stqe_next;		\
stqe_next         228 libdb/queue.h  	(tqelm)->field.stqe_next = (elm);				\
stqe_next         231 libdb/queue.h  #define STAILQ_NEXT(elm, field)	((elm)->field.stqe_next)
stqe_next         235 libdb/queue.h  	     (head)->stqh_first->field.stqe_next) == NULL)		\
stqe_next         240 libdb/queue.h  	if (((head)->stqh_first = (elm)->field.stqe_next) == NULL)	\
stqe_next         250 libdb/queue.h  		while( curelm->field.stqe_next != (elm) )		\
stqe_next         251 libdb/queue.h  			curelm = curelm->field.stqe_next;		\
stqe_next         252 libdb/queue.h  		if((curelm->field.stqe_next =				\
stqe_next         253 libdb/queue.h  		    curelm->field.stqe_next->field.stqe_next) == NULL)	\
stqe_next         254 libdb/queue.h  			(head)->stqh_last = &(curelm)->field.stqe_next;	\