Searched refs:SWAP (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10/OpenSSL098-52/src/crypto/aes/
H A Daes_locl.h66 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
67 # define GETU32(p) SWAP(*((u32 *)(p)))
68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
/macosx-10.10/postfix-255/postfix/src/master/
H A Dmaster_conf.c94 #define SWAP(type,a,b) { type temp = a; a = b; b = temp; } macro
134 SWAP(char *, serv->ext_name, entry->ext_name);
135 SWAP(char *, serv->path, entry->path);
136 SWAP(ARGV *, serv->args, entry->args);
137 SWAP(char *, serv->stress_param_val, entry->stress_param_val);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Drc4.c40 #define SWAP(k,x,y) \ macro
56 SWAP(key, i, j);
72 SWAP(key, x, y);
/macosx-10.10/Heimdal-398.1.2/appl/gssmask/
H A Dcommon.c70 #define SWAP(s,i,j) { char *t = str[i]; str[i] = str[j]; str[j] = t; } macro
74 SWAP(str,i,j);
76 SWAP(str,i,j);
/macosx-10.10/postfix-255/postfix/src/global/
H A Drecipient_list.c172 #define SWAP(t, x) do { t x = b->x; b->x = a->x ; a->x = x; } while (0) macro
174 SWAP(RECIPIENT *, info);
175 SWAP(int, len);
176 SWAP(int, avail);
H A Doff_cvt.c61 #define SWAP(type, a, b) { type temp; temp = a; a = b; b = temp; } macro
128 SWAP(int, start[i], last[-i]);
H A Dsafe_ultostr.c89 #define SWAP(type, a, b) { type temp; temp = a; a = b; b = temp; } macro
131 SWAP(int, start[i], last[-i]);
/macosx-10.10/OpenSSL098-52/src/crypto/camellia/
H A Dcmll_locl.h84 # define SWAP(x) ( _lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00 ) macro
85 # define GETU32(p) SWAP(*((u32 *)(p)))
86 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A DgettextP.h62 # define W(flag, data) ((flag) ? SWAP (data) : (data))
68 # define SWAP(i) bswap_32 (i) macro
71 SWAP (i)
/macosx-10.10/cxxfilt-11/cxxfilt/intl/
H A DgettextP.h62 # define W(flag, data) ((flag) ? SWAP (data) : (data))
68 # define SWAP(i) bswap_32 (i) macro
71 SWAP (i)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Drldefs.h153 #if !defined (SWAP)
154 # define SWAP(s, e) do { int t; t = s; s = e; e = t; } while (0) macro
H A Dundo.c275 SWAP (start, end);
H A Dutil.c147 SWAP (from, to);
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dmd5.c50 # define SWAP(n) \ macro
53 # define SWAP(n) (n) macro
84 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
85 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
86 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
87 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
308 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
/macosx-10.10/emacs-93/emacs/src/
H A Dmd5.c58 # define SWAP(n) \ macro
61 # define SWAP(n) (n) macro
95 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
96 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
97 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
98 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
126 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
127 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
330 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
/macosx-10.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Dheapsort.c47 * isn't worth optimizing; the SWAP's get sped up by the cache, and pointer
50 #define SWAP(a, b, count, size, tmp) { \ macro
87 SWAP(par, child, count, size, tmp); \
H A Dheapsort_b.c47 * isn't worth optimizing; the SWAP's get sped up by the cache, and pointer
50 #define SWAP(a, b, count, size, tmp) { \ macro
87 SWAP(par, child, count, size, tmp); \
H A Dheapsort_r.c47 * isn't worth optimizing; the SWAP's get sped up by the cache, and pointer
50 #define SWAP(a, b, count, size, tmp) { \ macro
87 SWAP(par, child, count, size, tmp); \
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_gpsvme.c60 #define SWAP(val) ( ((val) >> 24) | (((val) & 0x00ff0000) >> 8) | \ macro
187 tlo = SWAP(tlo); /* little to big endian swap on */
188 thi = SWAP(thi); /* copy of data */
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DOpcodes.java188 int SWAP = 95; // - field in interface:Opcodes
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dras2tiff.c213 #define SWAP(a,b) { unsigned char t = (a); (a) = (b); (b) = t; } macro
215 SWAP(cp[0], cp[2]);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Didl.c1401 #define SWAP(a,b) itmp=(a);(a)=(b);(b)=itmp macro
1431 SWAP(ids[k], ids[l+1]);
1433 SWAP(ids[l], ids[ir]);
1436 SWAP(ids[l+1], ids[ir]);
1439 SWAP(ids[l], ids[l+1]);
1448 SWAP(ids[i],ids[j]);
/macosx-10.10/vim-55/runtime/syntax/
H A Dforth.vim131 syn keyword forthStack DROP NIP DUP OVER TUCK SWAP ROT -ROT ?DUP PICK ROLL
132 syn keyword forthStack 2DROP 2NIP 2DUP 2OVER 2TUCK 2SWAP 2ROT 2-ROT
133 syn keyword forthStack 3DUP 4DUP 5DUP 3DROP 4DROP 5DROP 8DROP 4SWAP 4ROT
134 syn keyword forthStack 4-ROT 4TUCK 8SWAP 8DUP
/macosx-10.10/lsof-53/lsof/dialects/darwin/kmem/
H A Ddlsof.h234 #define SWAP "/dev/drum" macro
/macosx-10.10/postfix-255/postfix/src/util/
H A Dvstream.c1378 #define SWAP(type,a,b) do { type temp = (a); (a) = (b); (b) = (temp); } while (0) macro
1427 SWAP(int, stream->read_fd, stream2->read_fd);
1428 SWAP(int, stream->write_fd, stream2->write_fd);
1432 SWAP(int, stream->fd, stream2->fd);

Completed in 247 milliseconds

12