Home
last modified time | relevance | path

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

/sys/include/
Dqueue.h233 #define SLIST_SWAP(head1, head2, type) do { \ argument
234 struct type *swap_first = SLIST_FIRST(head1); \
235 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
259 #define STAILQ_CONCAT(head1, head2) do { \ argument
261 *(head1)->stqh_last = (head2)->stqh_first; \
262 (head1)->stqh_last = (head2)->stqh_last; \
346 #define STAILQ_SWAP(head1, head2, type) do { \ argument
347 struct type *swap_first = STAILQ_FIRST(head1); \
348 struct type **swap_last = (head1)->stqh_last; \
349 STAILQ_FIRST(head1) = STAILQ_FIRST(head2); \
[all …]