cqh_last          408 libdb/queue.h  	struct type *cqh_last;		/* last element */		\
cqh_last          430 libdb/queue.h  	for((var) = (head)->cqh_last;					\
cqh_last          436 libdb/queue.h  	(head)->cqh_last = (void *)(head);				\
cqh_last          443 libdb/queue.h  		(head)->cqh_last = (elm);				\
cqh_last          462 libdb/queue.h  	if ((head)->cqh_last == (void *)(head))				\
cqh_last          463 libdb/queue.h  		(head)->cqh_last = (elm);				\
cqh_last          471 libdb/queue.h  	(elm)->field.cqe_prev = (head)->cqh_last;			\
cqh_last          475 libdb/queue.h  		(head)->cqh_last->field.cqe_next = (elm);		\
cqh_last          476 libdb/queue.h  	(head)->cqh_last = (elm);					\
cqh_last          479 libdb/queue.h  #define CIRCLEQ_LAST(head) ((head)->cqh_last)
cqh_last          487 libdb/queue.h  		(head)->cqh_last = (elm)->field.cqe_prev;		\