Symbol: XSIMPLEQ_XOR
lib/libssh/openbsd-compat/sys-queue.h
439
#define XSIMPLEQ_FIRST(head) XSIMPLEQ_XOR(head, ((head)->sqx_first))
lib/libssh/openbsd-compat/sys-queue.h
442
#define XSIMPLEQ_NEXT(head, elm, field) XSIMPLEQ_XOR(head, ((elm)->field.sqx_next))
lib/libssh/openbsd-compat/sys-queue.h
460
(head)->sqx_first = XSIMPLEQ_XOR(head, NULL); \
lib/libssh/openbsd-compat/sys-queue.h
461
(head)->sqx_last = XSIMPLEQ_XOR(head, &(head)->sqx_first); \
lib/libssh/openbsd-compat/sys-queue.h
466
XSIMPLEQ_XOR(head, NULL)) \
lib/libssh/openbsd-compat/sys-queue.h
467
(head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
lib/libssh/openbsd-compat/sys-queue.h
468
(head)->sqx_first = XSIMPLEQ_XOR(head, (elm)); \
lib/libssh/openbsd-compat/sys-queue.h
472
(elm)->field.sqx_next = XSIMPLEQ_XOR(head, NULL); \
lib/libssh/openbsd-compat/sys-queue.h
473
*(XSIMPLEQ_XOR(head, (head)->sqx_last)) = XSIMPLEQ_XOR(head, (elm)); \
lib/libssh/openbsd-compat/sys-queue.h
474
(head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
lib/libssh/openbsd-compat/sys-queue.h
479
XSIMPLEQ_XOR(head, NULL)) \
lib/libssh/openbsd-compat/sys-queue.h
480
(head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
lib/libssh/openbsd-compat/sys-queue.h
481
(listelm)->field.sqx_next = XSIMPLEQ_XOR(head, (elm)); \
lib/libssh/openbsd-compat/sys-queue.h
485
if (((head)->sqx_first = XSIMPLEQ_XOR(head, \
lib/libssh/openbsd-compat/sys-queue.h
486
(head)->sqx_first)->field.sqx_next) == XSIMPLEQ_XOR(head, NULL)) \
lib/libssh/openbsd-compat/sys-queue.h
487
(head)->sqx_last = XSIMPLEQ_XOR(head, &(head)->sqx_first); \
lib/libssh/openbsd-compat/sys-queue.h
491
if (((elm)->field.sqx_next = XSIMPLEQ_XOR(head, \
lib/libssh/openbsd-compat/sys-queue.h
493
== XSIMPLEQ_XOR(head, NULL)) \
lib/libssh/openbsd-compat/sys-queue.h
495
XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \