Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/include/sys/
Dqueue.h217 #define SLIST_CONCAT(head1, head2, type, field) do { \ argument
218 QUEUE_TYPEOF(type) *curelm = SLIST_FIRST(head1); \
220 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
304 #define SLIST_SWAP(head1, head2, type) do { \ argument
305 QUEUE_TYPEOF(type) *swap_first = SLIST_FIRST(head1); \
306 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
341 #define STAILQ_CONCAT(head1, head2) do { \ argument
343 *(head1)->stqh_last = (head2)->stqh_first; \
344 (head1)->stqh_last = (head2)->stqh_last; \
434 #define STAILQ_SWAP(head1, head2, type) do { \ argument
[all …]