Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-core/musl/bsd-headers/
H A Dsys-queue.h214 #define LIST_MOVE(head1, head2) do { \ argument
215 LIST_INIT((head2)); \
217 (head2)->lh_first = (head1)->lh_first; \
383 #define SIMPLEQ_CONCAT(head1, head2) do { \ argument
384 if (!SIMPLEQ_EMPTY((head2))) { \
385 *(head1)->sqh_last = (head2)->sqh_first; \
386 (head1)->sqh_last = (head2)->sqh_last; \
387 SIMPLEQ_INIT((head2)); \
556 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
557 if (!TAILQ_EMPTY(head2)) { \
[all …]
/openbmc/qemu/include/qemu/
H 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)); \