Home
last modified time | relevance | path

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

/src/sys/contrib/ck/include/
H A Dck_queue.h444 struct type *swap_tmp = (head1)->clh_first; \
446 (head2)->clh_first = swap_tmp; \
447 if ((swap_tmp = (head1)->clh_first) != NULL) \
448 swap_tmp->field.cle_prev = &(head1)->clh_first; \
449 if ((swap_tmp = (head2)->clh_first) != NULL) \
450 swap_tmp->field.cle_prev = &(head2)->clh_first; \
/src/contrib/libarchive/unzip/
H A Dla_queue.h575 QUEUE_TYPEOF(type) *swap_tmp = LIST_FIRST(head1); \
577 LIST_FIRST((head2)) = swap_tmp; \
578 if ((swap_tmp = LIST_FIRST((head1))) != NULL) \
579 swap_tmp->field.le_prev = &LIST_FIRST((head1)); \
580 if ((swap_tmp = LIST_FIRST((head2))) != NULL) \
581 swap_tmp->field.le_prev = &LIST_FIRST((head2)); \
/src/sys/sys/
H A Dqueue.h786 QUEUE_TYPEOF(type) *swap_tmp = LIST_FIRST(head1); \
788 LIST_FIRST((head2)) = swap_tmp; \
789 if ((swap_tmp = LIST_FIRST((head1))) != NULL) \
790 swap_tmp->field.le_prev = &LIST_FIRST((head1)); \
791 if ((swap_tmp = LIST_FIRST((head2))) != NULL) \
792 swap_tmp->field.le_prev = &LIST_FIRST((head2)); \
/src/crypto/openssl/crypto/bn/
H A Dbn_exp.c1166 BIGNUM *swap_tmp; in BN_mod_exp_mont_word() local
1169 (BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1)))) in BN_mod_exp_mont_word()