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

1 2 3 4

  /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/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_idct_ssse3.asm 60 SWAP %2, %3
86 SWAP %3, %4
105 SWAP %2, %5
106 SWAP %4, %7
130 SWAP 3, 6
131 SWAP 1, 4
204 SWAP 2, 9
214 SWAP 1, 10
215 SWAP 3, 9
234 SWAP 5,
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_dct_mmx.asm 26 SWAP 1, 4 ; m1 c1
27 SWAP 2, 3 ; m2 d1
28 SWAP 3, 5 ; m3 b1
44 SWAP 2, 3, 0, 1, 4
vp9_dct_ssse3.asm 36 SWAP %2, %3
62 SWAP %3, %4
81 SWAP %2, %5
82 SWAP %4, %7
108 SWAP 1, 4
109 SWAP 3, 6
  /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/libhevc/decoder/
ihevcd_intra_pred_mode_prediction.c 273 SWAP(cand_mode_list[0], cand_mode_list[1]);
277 SWAP(cand_mode_list[0], cand_mode_list[2]);
281 SWAP(cand_mode_list[1], cand_mode_list[2]);
  /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/chromium_org/cc/test/
test_context_support.h 26 virtual void Swap() OVERRIDE;
53 SWAP,
test_context_support.cc 61 void TestContextSupport::Swap() {
62 last_swap_type_ = SWAP;
  /external/libhevc/common/
ihevc_macros.h 82 /** Swap two variables */
83 #define SWAP(X,Y) \
  /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
  /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/aac/libSBRenc/src/
sbr_def.h 107 #define SWAP(a,b) tempr=a, a=b, b=tempr
  /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/javassist/src/main/javassist/convert/
TransformWriteField.java 54 iterator.writeByte(SWAP, pos + 1);
  /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/elfutils/0.153/lib/
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); \
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; \
  /external/javassist/src/main/javassist/bytecode/
Opcode.java 227 int SWAP = 95;
339 0, // 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_debuginfo/
storage.c     [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 131 case ByteOps.SWAP: {
  /external/javassist/src/main/javassist/expr/
NewExpr.java 145 && iterator.byteAt(newPos + 4) == Opcode.SWAP)
169 /* delete the preceding NEW and DUP (or DUP_X1, SWAP) instructions.
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Opcodes.java 234 int SWAP = 95; // -

Completed in 999 milliseconds

1 2 3 4