Home
last modified time | relevance | path

Searched defs:SWAP (Results 1 – 18 of 18) sorted by relevance

/NextBSD/crypto/openssl/crypto/aes/
HDaes_locl.h66 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
/NextBSD/crypto/heimdal/appl/gssmask/
HDcommon.c70 #define SWAP(s,i,j) { char *t = str[i]; str[i] = str[j]; str[j] = t; } in permute() macro
/NextBSD/contrib/gcclibs/libiberty/
HDmd5.c50 # define SWAP(n) \ macro
53 # define SWAP(n) (n) macro
/NextBSD/contrib/binutils/libiberty/
HDmd5.c50 # define SWAP(n) \ macro
53 # define SWAP(n) (n) macro
/NextBSD/crypto/openssl/crypto/camellia/
HDcamellia.c96 # define SWAP(x) _byteswap_ulong(x) macro
98 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
/NextBSD/contrib/libreadline/
HDrldefs.h154 # define SWAP(s, e) do { int t; t = s; s = e; e = t; } while (0) macro
/NextBSD/lib/libc/stdlib/
HDheapsort.c60 #define SWAP(a, b, count, size, tmp) { \ macro
/NextBSD/sys/crypto/rijndael/
HDrijndael-alg-fst.c725 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
/NextBSD/sys/powerpc/fpu/
HDfpu_emu.h132 #define SWAP(x, y) { \ macro
/NextBSD/lib/libc/sparc64/fpu/
HDfpu_emu.h130 #define SWAP(x, y) { \ macro
/NextBSD/contrib/ntp/ntpd/
HDrefclock_gpsvme.c60 #define SWAP(val) ( ((val) >> 24) | (((val) & 0x00ff0000) >> 8) | \ macro
/NextBSD/contrib/pf/libevent/
HDbuffer.c83 #define SWAP(x,y) do { \ macro
/NextBSD/contrib/wpa/src/crypto/
HDaes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
/NextBSD/contrib/gcc/
HDunwind-dw2-fde.c472 #define SWAP(x,y) do { const fde * tmp = x; x = y; y = tmp; } while (0) macro
HDtree-ssa-loop-niter.c46 #define SWAP(X, Y) do { void *tmp = (X); (X) = (Y); (Y) = tmp; } while (0) macro
/NextBSD/usr.sbin/inetd/
HDinetd.c1024 #define SWAP(t,a, b) { t c = a; a = b; b = c; } in config() macro
/NextBSD/sys/netpfil/pf/
HDpf_table.c74 #define SWAP(type, a1, a2) \ macro
/NextBSD/contrib/sqlite3/
HDsqlite3.c8983 #define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} macro