Home
last modified time | relevance | path

Searched refs:listelm (Results 1 – 4 of 4) sorted by relevance

/dragonfly/lib/libssh/openbsd-compat/
H A Dsys-queue.h300 (listelm)->field.le_next->field.le_prev = \
302 (listelm)->field.le_next = (elm); \
303 (elm)->field.le_prev = &(listelm)->field.le_next; \
307 (elm)->field.le_prev = (listelm)->field.le_prev; \
308 (elm)->field.le_next = (listelm); \
309 *(listelm)->field.le_prev = (elm); \
310 (listelm)->field.le_prev = &(elm)->field.le_next; \
397 (listelm)->field.sqe_next = (elm); \
585 (listelm)->field.tqe_next = (elm); \
591 (elm)->field.tqe_next = (listelm); \
[all …]
/dragonfly/sys/sys/
H A Dqueue.h434 QMD_LIST_CHECK_NEXT(listelm, field); \
438 LIST_NEXT((listelm), field) = (elm); \
443 QMD_LIST_CHECK_PREV(listelm, field); \
445 LIST_NEXT((elm), field) = (listelm); \
446 *(listelm)->field.le_prev = (elm); \
591 QMD_TAILQ_CHECK_NEXT(listelm, field); \
599 TAILQ_NEXT((listelm), field) = (elm); \
602 QMD_TRACE_ELEM(&listelm->field); \
606 QMD_TAILQ_CHECK_PREV(listelm, field); \
609 *(listelm)->field.tqe_prev = (elm); \
[all …]
/dragonfly/contrib/elftoolchain/common/
H A D_elftc.h169 #define STAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ argument
170 if (((elm)->field.stqe_next = (listelm)->field.stqe_next) == NULL)\
172 (listelm)->field.stqe_next = (elm); \
/dragonfly/libexec/rtld-elf/
H A Drtld.c2526 Objlist_Entry *elm, *listelm; in objlist_put_after() local
2528 STAILQ_FOREACH(listelm, list, link) { in objlist_put_after()
2529 if (listelm->obj == listobj) in objlist_put_after()
2534 if (listelm != NULL) in objlist_put_after()
2535 STAILQ_INSERT_AFTER(list, listelm, elm, link); in objlist_put_after()