HomeSort by relevance Sort by last modified time
    Searched defs:SWAP (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_locl.h 66 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
67 # define GETU32(p) SWAP(*((u32 *)(p)))
68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
  /external/openssl/crypto/aes/
aes_locl.h 66 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
67 # define GETU32(p) SWAP(*((u32 *)(p)))
68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
  /external/chromium_org/cc/test/
test_context_support.h 28 virtual void Swap() OVERRIDE;
41 SWAP,
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 38 #define SWAP(a, b, temp) {temp = a; a = b; b = temp;}
44 SWAP(p, q, r); \
  /external/e2fsprogs/intl/
gettextP.h 54 # define W(flag, data) ((flag) ? SWAP (data) : (data))
60 # define SWAP(i) bswap_32 (i)
63 SWAP (i)
  /external/elfutils/lib/
md5.c 40 # define SWAP(n) \
43 # define SWAP(n) (n)
77 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
78 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
79 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
80 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
108 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
109 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
332 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
sha1.c 41 # define SWAP(n) bswap_32 (n)
43 # define SWAP(n) (n)
77 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
78 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
79 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
80 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
81 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
109 *(sha1_uint32 *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
111 *(sha1_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
260 W (i) = SWAP (*words);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes_i.h 109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
110 #define GETU32(p) SWAP(*((u32 *)(p)))
111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
  /external/chromium/third_party/libevent/
buffer.c 91 #define SWAP(x,y) do { \
109 /* Swap them directly */
110 SWAP(&tmp, outbuf);
111 SWAP(outbuf, inbuf);
112 SWAP(inbuf, &tmp);
  /external/chromium_org/third_party/libevent/
buffer.c 91 #define SWAP(x,y) do { \
109 /* Swap them directly */
110 SWAP(&tmp, outbuf);
111 SWAP(outbuf, inbuf);
112 SWAP(inbuf, &tmp);
  /external/valgrind/main/perf/
ffbench.c 166 #define SWAP(a,b) tempr=(a); (a)=(b); (b)=tempr
194 SWAP(data[i3], data[i3rev]);
195 SWAP(data[i3 + 1], data[i3rev + 1]);
236 #undef SWAP
  /external/aac/libSBRenc/src/
sbr_def.h 107 #define SWAP(a,b) tempr=a, a=b, b=tempr
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 1240 #define SWAP() \
    [all...]
  /external/libxslt/libxslt/
pattern.c 1240 #define SWAP() \
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
storage.c     [all...]
  /external/javassist/src/main/javassist/bytecode/
Opcode.java 227 int SWAP = 95;
339 0, // swap, 95
  /external/valgrind/main/coregrind/
m_transtab.c     [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ByteOps.java 122 public static final int SWAP = 0x5f;
450 "5f - swap;" +
  /external/chromium_org/third_party/sqlite/src/src/
where.c 500 ** Swap two objects of type TYPE.
502 #define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;}
522 SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
525 SWAP(Expr*,pExpr->pRight,pExpr->pLeft);
    [all...]
  /external/valgrind/main/memcheck/
mc_main.c     [all...]
  /prebuilts/devtools/tools/lib/
asm-4.0.jar 
  /prebuilts/misc/common/asm/
asm-4.0.jar 
  /prebuilts/sdk/tools/lib/
asm-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-3.3.1.jar 
asm-4.0.jar 

Completed in 2751 milliseconds

1 2