Home
last modified time | relevance | path

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

/freebsd/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; \
/freebsd/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)); \
/freebsd/sys/sys/
H A Dqueue.h677 QUEUE_TYPEOF(type) *swap_tmp = LIST_FIRST(head1); \
679 LIST_FIRST((head2)) = swap_tmp; \
680 if ((swap_tmp = LIST_FIRST((head1))) != NULL) \
681 swap_tmp->field.le_prev = &LIST_FIRST((head1)); \
682 if ((swap_tmp = LIST_FIRST((head2))) != NULL) \
683 swap_tmp->field.le_prev = &LIST_FIRST((head2)); \
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_exp.c1180 BIGNUM *swap_tmp; in BN_mod_exp_mont_word() local
1184 (BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1)))) in BN_mod_exp_mont_word()