Home
last modified time | relevance | path

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

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