Symbol: headname
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
347
#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
348
for ((var) = TAILQ_LAST((head), headname); \
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
350
(var) = TAILQ_PREV((var), headname, field))
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
391
#define TAILQ_LAST(head, headname) \
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
392
(*(((struct headname *)((head)->tqh_last))->tqh_last))
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
396
#define TAILQ_PREV(elm, headname, field) \
crypto/dist/ipsec-tools/src/include-glibc/sys/queue.h
397
(*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
crypto/dist/ipsec-tools/src/racoon/misc.h
56
#define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \
crypto/dist/ipsec-tools/src/racoon/misc.h
57
TAILQ_FOREACH_REVERSE(var, head, field, headname)
crypto/dist/ipsec-tools/src/racoon/misc.h
59
#define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \
crypto/dist/ipsec-tools/src/racoon/misc.h
60
TAILQ_FOREACH_REVERSE(var, head, headname, field)
lib/libc/citrus/citrus_hash.h
33
#define _CITRUS_HASH_HEAD(headname, type, hashsize) \
lib/libpthread/pthread_queue.h
122
#define PTQ_LAST(head, headname) \
lib/libpthread/pthread_queue.h
123
(*(((struct headname *)(void *)((head)->ptqh_last))->ptqh_last))
lib/libpthread/pthread_queue.h
124
#define PTQ_PREV(elm, headname, field) \
lib/libpthread/pthread_queue.h
125
(*(((struct headname *)(void *)((elm)->field.ptqe_prev))->ptqh_last))
lib/libpthread/pthread_queue.h
132
#define PTQ_FOREACH_REVERSE(var, head, headname, field) \
lib/libpthread/pthread_queue.h
133
for ((var) = (*(((struct headname *)(void *)((head)->ptqh_last))->ptqh_last)); \
lib/libpthread/pthread_queue.h
135
(var) = (*(((struct headname *)(void *)((var)->field.ptqe_prev))->ptqh_last)))
sys/altq/altq_var.h
151
#define TAILQ_LAST(head, headname) \
sys/altq/altq_var.h
152
(*(((struct headname *)((head)->tqh_last))->tqh_last))
sys/sys/queue.h
420
#define TAILQ_LAST(head, headname) \
sys/sys/queue.h
421
(*(((struct headname *)(void *)((head)->tqh_last))->tqh_last))
sys/sys/queue.h
422
#define TAILQ_PREV(elm, headname, field) \
sys/sys/queue.h
423
(*(((struct headname *)(void *)((elm)->field.tqe_prev))->tqh_last))
sys/sys/queue.h
437
#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
sys/sys/queue.h
438
for ((var) = TAILQ_LAST((head), headname); \
sys/sys/queue.h
440
(var) = TAILQ_PREV((var), headname, field))
sys/sys/queue.h
442
#define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, prev) \
sys/sys/queue.h
443
for ((var) = TAILQ_LAST((head), headname); \
sys/sys/queue.h
445
((prev) = TAILQ_PREV((var), headname, field), 1); (var) = (prev))