Home
last modified time | relevance | path

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

/wlan-driver/qca-wifi-host-cmn/utils/sys/
H A Dqueue.h235 #define STAILQ_CONCAT(head1, head2) do { \ argument
236 if (!STAILQ_EMPTY((head2))) { \
237 *(head1)->stqh_last = (head2)->stqh_first; \
238 (head1)->stqh_last = (head2)->stqh_last; \
239 STAILQ_INIT((head2)); \
540 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
541 if (!TAILQ_EMPTY(head2)) { \
542 *(head1)->tqh_last = (head2)->tqh_first; \
543 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last;\
544 (head1)->tqh_last = (head2)->tqh_last; \
[all …]