cqh_first 415 sys/queue.h struct type *cqh_first; /* first element */ \ cqh_first 431 sys/queue.h #define CIRCLEQ_FIRST(head) ((head)->cqh_first) cqh_first 453 sys/queue.h (head)->cqh_first = CIRCLEQ_END(head); \ cqh_first 471 sys/queue.h (head)->cqh_first = (elm); \ cqh_first 478 sys/queue.h (elm)->field.cqe_next = (head)->cqh_first; \ cqh_first 483 sys/queue.h (head)->cqh_first->field.cqe_prev = (elm); \ cqh_first 484 sys/queue.h (head)->cqh_first = (elm); \ cqh_first 490 sys/queue.h if ((head)->cqh_first == CIRCLEQ_END(head)) \ cqh_first 491 sys/queue.h (head)->cqh_first = (elm); \ cqh_first 504 sys/queue.h (head)->cqh_first = (elm)->field.cqe_next; \ cqh_first 520 sys/queue.h (head).cqh_first = (elm2); \