cqh_first         313 libdb/mpool.c  	while ((bp = mp->lqh.cqh_first) != (void *)&mp->lqh) {
cqh_first         314 libdb/mpool.c  		CIRCLEQ_REMOVE(&mp->lqh, mp->lqh.cqh_first, q);
cqh_first         336 libdb/mpool.c  	for (bp = mp->lqh.cqh_first;
cqh_first         369 libdb/mpool.c  	for (bp = mp->lqh.cqh_first;
cqh_first         459 libdb/mpool.c  	for (bp = head->cqh_first; bp != (void *)head; bp = bp->hq.cqe_next)
cqh_first         505 libdb/mpool.c  	for (bp = mp->lqh.cqh_first;
cqh_first          78 libdb/mpool.h  		struct _bkt *cqh_first;
cqh_first          82 libdb/mpool.h  		struct _bkt *cqh_first;
cqh_first         424 libdb/queue.h  	struct type *cqh_first;		/**< first element */		\
cqh_first         439 libdb/queue.h  #define CIRCLEQ_EMPTY(head) ((head)->cqh_first == (void *)(head))
cqh_first         441 libdb/queue.h  #define CIRCLEQ_FIRST(head) ((head)->cqh_first)
cqh_first         444 libdb/queue.h  	for((var) = (head)->cqh_first;					\
cqh_first         454 libdb/queue.h  	(head)->cqh_first = (void *)(head);				\
cqh_first         472 libdb/queue.h  		(head)->cqh_first = (elm);				\
cqh_first         479 libdb/queue.h  	(elm)->field.cqe_next = (head)->cqh_first;			\
cqh_first         484 libdb/queue.h  		(head)->cqh_first->field.cqe_prev = (elm);		\
cqh_first         485 libdb/queue.h  	(head)->cqh_first = (elm);					\
cqh_first         491 libdb/queue.h  	if ((head)->cqh_first == (void *)(head))			\
cqh_first         492 libdb/queue.h  		(head)->cqh_first = (elm);				\
cqh_first         511 libdb/queue.h  		(head)->cqh_first = (elm)->field.cqe_next;		\