Searched refs:head2 (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_queue.h214 #define CK_SLIST_MOVE(head1, head2, field) do { \
215 ck_pr_store_ptr(&(head1)->cslh_first, (head2)->cslh_first); \
247 #define CK_STAILQ_CONCAT(head1, head2) do { \
248 if ((head2)->cstqh_first != NULL) { \
249 ck_pr_store_ptr((head1)->cstqh_last, (head2)->cstqh_first); \
251 (head1)->cstqh_last = (head2)->cstqh_last; \
252 CK_STAILQ_INIT((head2)); \
328 #define CK_STAILQ_MOVE(head1, head2, field) do { \
329 ck_pr_store_ptr(&(head1)->cstqh_first, (head2)->cstqh_first); \
330 (head1)->cstqh_last = (head2)
[all...]
/freebsd-11-stable/sys/sys/
H A Dqueue.h191 #define SLIST_CONCAT(head1, head2, type, field) do { \
194 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
195 SLIST_INIT(head2); \
196 } else if (SLIST_FIRST(head2) != NULL) { \
199 SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
200 SLIST_INIT(head2); \
272 #define SLIST_SWAP(head1, head2, type) do { \
274 SLIST_FIRST(head1) = SLIST_FIRST(head2); \
275 SLIST_FIRST(head2) = swap_first; \
309 #define STAILQ_CONCAT(head1, head2) d
[all...]
/freebsd-11-stable/contrib/openbsm/compat/
H A Dqueue.h229 #define STAILQ_CONCAT(head1, head2) do { \
230 if (!STAILQ_EMPTY((head2))) { \
231 *(head1)->stqh_last = (head2)->stqh_first; \
232 (head1)->stqh_last = (head2)->stqh_last; \
233 STAILQ_INIT((head2)); \
434 #define TAILQ_CONCAT(head1, head2, field) do { \
435 if (!TAILQ_EMPTY(head2)) { \
436 *(head1)->tqh_last = (head2)->tqh_first; \
437 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
438 (head1)->tqh_last = (head2)
[all...]
/freebsd-11-stable/contrib/elftoolchain/common/
H A D_elftc.h94 #define STAILQ_CONCAT(head1, head2) do { \
95 if (!STAILQ_EMPTY((head2))) { \
96 *(head1)->stqh_last = (head2)->stqh_first; \
97 (head1)->stqh_last = (head2)->stqh_last; \
98 STAILQ_INIT((head2)); \
/freebsd-11-stable/contrib/libucl/uthash/
H A Dutlist.h318 #define LL_CONCAT(head1,head2) \
319 LL_CONCAT2(head1,head2,next)
321 #define LL_CONCAT2(head1,head2,next) \
327 _tmp->next=(head2); \
329 (head1)=(head2); \
536 #define DL_CONCAT(head1,head2) \
537 DL_CONCAT2(head1,head2,prev,next)
539 #define DL_CONCAT2(head1,head2,prev,next) \
542 if (head2) { \
544 _tmp = (head2)
[all...]
/freebsd-11-stable/contrib/unbound/dnscrypt/
H A Ddnscrypt.c579 struct config_strlist *head, *head2; local
607 for(head2 = cfg->dnscrypt_provider_cert_rotated; head2; head2 = head2->next) {
608 if(strcmp(head->str, head2->str) == 0) {
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dbuildvirtuser75 =head2 /etc/mail/virtusers/example.org:
/freebsd-11-stable/crypto/openssl/util/
H A Dpod2man.pl93 Minor headers may be included using C<=head2>, and are
113 up into subsections using the C<=head2> directives, like
115 =head2 A Sample Subection
117 =head2 Yet Another Sample Subection
242 C<=head1>, C<=head2>, C<=item>, C<=over>, C<=back>, or C<=cut>.
819 # LREF: a =head2 (head1?), maybe on a manpage, maybe right here
853 elsif ($Cmd eq 'head2') {
876 elsif ($Cmd eq 'head2') {

Completed in 193 milliseconds