stqe_next         181 libdb/queue.h  	struct type *stqe_next;	/* next element */			\
stqe_next         203 libdb/queue.h  	for((var) = (head)->stqh_first; (var); (var) = (var)->field.stqe_next)
stqe_next         206 libdb/queue.h  	if (((elm)->field.stqe_next = (head)->stqh_first) == NULL)	\
stqe_next         207 libdb/queue.h  		(head)->stqh_last = &(elm)->field.stqe_next;		\
stqe_next         212 libdb/queue.h  	(elm)->field.stqe_next = NULL;					\
stqe_next         214 libdb/queue.h  	(head)->stqh_last = &(elm)->field.stqe_next;			\
stqe_next         218 libdb/queue.h  	if (((elm)->field.stqe_next = (tqelm)->field.stqe_next) == NULL)\
stqe_next         219 libdb/queue.h  		(head)->stqh_last = &(elm)->field.stqe_next;		\
stqe_next         220 libdb/queue.h  	(tqelm)->field.stqe_next = (elm);				\
stqe_next         223 libdb/queue.h  #define STAILQ_NEXT(elm, field)	((elm)->field.stqe_next)
stqe_next         227 libdb/queue.h  	     (head)->stqh_first->field.stqe_next) == NULL)		\
stqe_next         232 libdb/queue.h  	if (((head)->stqh_first = (elm)->field.stqe_next) == NULL)	\
stqe_next         242 libdb/queue.h  		while( curelm->field.stqe_next != (elm) )		\
stqe_next         243 libdb/queue.h  			curelm = curelm->field.stqe_next;		\
stqe_next         244 libdb/queue.h  		if((curelm->field.stqe_next =				\
stqe_next         245 libdb/queue.h  		    curelm->field.stqe_next->field.stqe_next) == NULL)	\
stqe_next         246 libdb/queue.h  			(head)->stqh_last = &(curelm)->field.stqe_next;	\