cqe_next 424 sys/queue.h struct type *cqe_next; /* next element */ \ cqe_next 434 sys/queue.h #define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next) cqe_next 458 sys/queue.h (elm)->field.cqe_next = (listelm)->field.cqe_next; \ cqe_next 460 sys/queue.h if ((listelm)->field.cqe_next == CIRCLEQ_END(head)) \ cqe_next 463 sys/queue.h (listelm)->field.cqe_next->field.cqe_prev = (elm); \ cqe_next 464 sys/queue.h (listelm)->field.cqe_next = (elm); \ cqe_next 468 sys/queue.h (elm)->field.cqe_next = (listelm); \ cqe_next 473 sys/queue.h (listelm)->field.cqe_prev->field.cqe_next = (elm); \ cqe_next 478 sys/queue.h (elm)->field.cqe_next = (head)->cqh_first; \ cqe_next 488 sys/queue.h (elm)->field.cqe_next = CIRCLEQ_END(head); \ cqe_next 493 sys/queue.h (head)->cqh_last->field.cqe_next = (elm); \ cqe_next 498 sys/queue.h if ((elm)->field.cqe_next == CIRCLEQ_END(head)) \ cqe_next 501 sys/queue.h (elm)->field.cqe_next->field.cqe_prev = \ cqe_next 504 sys/queue.h (head)->cqh_first = (elm)->field.cqe_next; \ cqe_next 506 sys/queue.h (elm)->field.cqe_prev->field.cqe_next = \ cqe_next 507 sys/queue.h (elm)->field.cqe_next; \ cqe_next 509 sys/queue.h _Q_INVALIDATE((elm)->field.cqe_next); \ cqe_next 513 sys/queue.h if (((elm2)->field.cqe_next = (elm)->field.cqe_next) == \ cqe_next 517 sys/queue.h (elm2)->field.cqe_next->field.cqe_prev = (elm2); \ cqe_next 522 sys/queue.h (elm2)->field.cqe_prev->field.cqe_next = (elm2); \ cqe_next 524 sys/queue.h _Q_INVALIDATE((elm)->field.cqe_next); \