Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/sys/
H A Dqueue.h355 #define STAILQ_CONCAT(head1, head2) do { \ argument
356 if (!STAILQ_EMPTY((head2))) { \
357 *(head1)->stqh_last = (head2)->stqh_first; \
358 (head1)->stqh_last = (head2)->stqh_last; \
359 STAILQ_INIT((head2)); \
448 #define STAILQ_SWAP(head1, head2, type) \ argument
454 STAILQ_FIRST(head1) = STAILQ_FIRST(head2); \
455 (head1)->stqh_last = (head2)->stqh_last; \
456 STAILQ_FIRST(head2) = swap_first; \
457 (head2)->stqh_last = swap_last; \
[all …]