Home
last modified time | relevance | path

Searched refs:head1 (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/ck/include/
H A Dck_queue.h247 #define CK_STAILQ_CONCAT(head1, head2) do { \ argument
251 (head1)->cstqh_last = (head2)->cstqh_last; \
330 (head1)->cstqh_last = (head2)->cstqh_last; \
332 (head1)->cstqh_last = &(head1)->cstqh_first; \
342 (head1)->cstqh_last = (head2)->cstqh_last; \
345 if (CK_STAILQ_EMPTY(head1)) \
346 (head1)->cstqh_last = &(head1)->cstqh_first; \
421 if ((head1)->clh_first != NULL) \
422 (head1)->clh_first->field.cle_prev = &(head1)->clh_first; \
429 struct type *swap_tmp = (head1)->clh_first; \
[all …]
/f-stack/dpdk/lib/librte_eal/windows/include/sys/
H A Dqueue.h274 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
309 #define STAILQ_CONCAT(head1, head2) do { \ argument
312 (head1)->stqh_last = (head2)->stqh_last; \
401 (head1)->stqh_last = (head2)->stqh_last; \
404 if (STAILQ_EMPTY(head1)) \
405 (head1)->stqh_last = &STAILQ_FIRST(head1); \
490 &LIST_FIRST((head1)); \
679 (head1)->tqh_last = (head2)->tqh_last; \
681 QMD_TRACE_HEAD(head1); \
828 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/f-stack/freebsd/sys/
H A Dqueue.h304 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
339 #define STAILQ_CONCAT(head1, head2) do { \ argument
342 (head1)->stqh_last = (head2)->stqh_last; \
431 (head1)->stqh_last = (head2)->stqh_last; \
434 if (STAILQ_EMPTY(head1)) \
435 (head1)->stqh_last = &STAILQ_FIRST(head1); \
519 &LIST_FIRST((head1)); \
708 (head1)->tqh_last = (head2)->tqh_last; \
710 QMD_TRACE_HEAD(head1); \
857 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/f-stack/tools/compat/include/sys/
H A Dqueue.h257 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
292 #define STAILQ_CONCAT(head1, head2) do { \ argument
295 (head1)->stqh_last = (head2)->stqh_last; \
384 (head1)->stqh_last = (head2)->stqh_last; \
387 if (STAILQ_EMPTY(head1)) \
388 (head1)->stqh_last = &STAILQ_FIRST(head1); \
604 *(head1)->tqh_last = (head2)->tqh_first; \
606 (head1)->tqh_last = (head2)->tqh_last; \
608 QMD_TRACE_HEAD(head1); \
741 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/f-stack/app/micro_thread/
H A Dkqueue_proxy.h66 #define TAILQ_CONCAT(head1, head2, field) \ argument
69 *(head1)->tqh_last = (head2)->tqh_first; \
70 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
71 (head1)->tqh_last = (head2)->tqh_last; \