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

1 2 3

  /external/chromium_org/third_party/boringssl/src/crypto/aes/
internal.h 61 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
62 #define GETU32(p) SWAP(*((uint32_t *)(p)))
64 { *((uint32_t *)(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 26 virtual void Swap() OVERRIDE;
55 SWAP,
  /external/libhevc/common/
ihevc_macros.h 82 /** Swap two variables */
83 #define SWAP(X,Y) \
  /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/0.153/lib/
md5.c 39 #define SWAP(n) LE32 (n)
71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
337 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
sha1.c 39 #define SWAP(n) BE32 (n)
71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
262 W (i) = SWAP (*words); \
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
ParallelSorterEmitter.java 32 private static final Signature SWAP =
33 TypeUtils.parseSignature("void swap(int, int)");
71 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, SWAP, null);
  /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_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/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/mockito/cglib-and-asm/src/org/mockito/asm/
Opcodes.java 234 int SWAP = 95; // -
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 67 private static final int SWAP = InstructionConstants.OP_SWAP & 0xff;
71 private static final int POP_X1 = SWAP | (POP << 8);
79 private static final int POP_SWAP_POP = POP | (SWAP << 8) | (POP << 16);
80 private static final int POP2_SWAP_POP = POP2 | (SWAP << 8) | (POP << 16);
81 private static final int SWAP_DUP_X1 = SWAP | (DUP_X1 << 8);
82 private static final int SWAP_DUP_X1_SWAP = SWAP | (DUP_X1 << 8) | (SWAP << 16);
83 private static final int SWAP_POP_DUP = SWAP | (POP << 8) | (DUP << 16);
84 private static final int SWAP_POP_DUP_X1 = SWAP | (POP << 8) | (DUP_X1 << 16);
88 private static final int DUP2_X2_SWAP_POP = DUP2_X2 | (SWAP << 8) | (POP << 16)
    [all...]
  /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...]
  /external/jarjar/lib/
asm-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
  /prebuilts/devtools/tools/lib/
asm-4.0.jar 

Completed in 1442 milliseconds

1 2 3