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