sqe_next          256 sys/queue.h    	struct type *sqe_next;	/* next element */			\
sqe_next          265 sys/queue.h    #define	SIMPLEQ_NEXT(elm, field)    ((elm)->field.sqe_next)
sqe_next          281 sys/queue.h    	if (((elm)->field.sqe_next = (head)->sqh_first) == NULL)	\
sqe_next          282 sys/queue.h    		(head)->sqh_last = &(elm)->field.sqe_next;		\
sqe_next          287 sys/queue.h    	(elm)->field.sqe_next = NULL;					\
sqe_next          289 sys/queue.h    	(head)->sqh_last = &(elm)->field.sqe_next;			\
sqe_next          293 sys/queue.h    	if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\
sqe_next          294 sys/queue.h    		(head)->sqh_last = &(elm)->field.sqe_next;		\
sqe_next          295 sys/queue.h    	(listelm)->field.sqe_next = (elm);				\
sqe_next          299 sys/queue.h    	if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \