Home
last modified time | relevance | path

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

/qemu/include/qemu/
A Dqueue.h354 #define QSIMPLEQ_CONCAT(head1, head2) do { \ argument
355 if (!QSIMPLEQ_EMPTY((head2))) { \
356 *(head1)->sqh_last = (head2)->sqh_first; \
357 (head1)->sqh_last = (head2)->sqh_last; \
358 QSIMPLEQ_INIT((head2)); \
362 #define QSIMPLEQ_PREPEND(head1, head2) do { \ argument
363 if (!QSIMPLEQ_EMPTY((head2))) { \
364 *(head2)->sqh_last = (head1)->sqh_first; \
365 (head1)->sqh_first = (head2)->sqh_first; \
366 QSIMPLEQ_INIT((head2)); \

Completed in 7 milliseconds