Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/include/sys/
Dqueue.h488 if (LIST_FIRST((head)) != NULL && \
489 LIST_FIRST((head))->field.le_prev != \
490 &LIST_FIRST((head))) \
523 QUEUE_TYPEOF(type) *curelm = LIST_FIRST(head1); \
525 if ((LIST_FIRST(head1) = LIST_FIRST(head2)) != NULL) { \
526 LIST_FIRST(head2)->field.le_prev = \
527 &LIST_FIRST((head1)); \
530 } else if (LIST_FIRST(head2) != NULL) { \
533 LIST_NEXT(curelm, field) = LIST_FIRST(head2); \
534 LIST_FIRST(head2)->field.le_prev = &LIST_NEXT(curelm, field); \
[all …]