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

123

/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Dinternal.h61 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
62 #define GETU32(p) SWAP(*((uint32_t *)(p)))
64 { *((uint32_t *)(ct)) = SWAP((st)); }
/external/openssl/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)); }
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_idct_ssse3_x86_64.asm60 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
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_dct_mmx.asm26 SWAP 1, 4 ; m1 c1
27 SWAP 2, 3 ; m2 d1
28 SWAP 3, 5 ; m3 b1
44 SWAP 2, 3, 0, 1, 4
H A Dvp9_dct_ssse3_x86_64.asm37 SWAP %2, %3
63 SWAP %3, %4
82 SWAP %2, %5
83 SWAP %4, %7
109 SWAP 0, 1
116 SWAP 1, 4
117 SWAP 3, 6
/external/e2fsprogs/intl/
H A DgettextP.h54 # define W(flag, data) ((flag) ? SWAP (data) : (data))
60 # define SWAP(i) bswap_32 (i) macro
63 SWAP (i)
/external/libhevc/decoder/
H A Dihevcd_intra_pred_mode_prediction.c273 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/
H A DParallelSorterEmitter.java32 private static final Signature SWAP = field in class:ParallelSorterEmitter
71 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, SWAP, null);
/external/libhevc/common/
H A Dihevc_macros.h83 #define SWAP(X,Y) \ macro
/external/valgrind/main/perf/
H A Dffbench.c166 #define SWAP(a,b) tempr=(a); (a)=(b); (b)=tempr macro
194 SWAP(data[i3], data[i3rev]);
195 SWAP(data[i3 + 1], data[i3rev + 1]);
236 #undef SWAP macro
/external/aac/libSBRenc/src/
H A Dsbr_def.h107 #define SWAP(a,b) tempr=a, a=b, b=tempr macro
/external/chromium_org/cc/test/
H A Dtest_context_support.cc62 last_swap_type_ = SWAP;
H A Dtest_context_support.h55 SWAP, enumerator in enum:cc::TestContextSupport::SwapType
/external/chromium_org/third_party/libevent/
H A Dbuffer.c91 #define SWAP(x,y) do { \ macro
110 SWAP(&tmp, outbuf);
111 SWAP(outbuf, inbuf);
112 SWAP(inbuf, &tmp);
/external/javassist/src/main/javassist/convert/
H A DTransformWriteField.java54 iterator.writeByte(SWAP, pos + 1);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
110 #define GETU32(p) SWAP(*((u32 *)(p)))
111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
/external/wpa_supplicant_8/src/crypto/
H A Daes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
110 #define GETU32(p) SWAP(*((u32 *)(p)))
111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) macro
110 #define GETU32(p) SWAP(*((u32 *)(p)))
111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
/external/elfutils/0.153/lib/
H A Dsha1.c39 #define SWAP(n) BE32 (n) macro
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); \
H A Dmd5.c39 #define SWAP(n) LE32 (n) macro
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/
H A DOpcode.java227 int SWAP = 95; field in interface:Opcode
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationShrinker.java67 private static final int SWAP = InstructionConstants.OP_SWAP & 0xff; field in class:EvaluationShrinker
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 <<
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dstorage.c1404 # define SWAP(ty,aa,bb) \ macro
1524 SWAP(Addr,sta1,sta2); SWAP(Addr,end1,end2); SWAP(Addr,toc1,toc2);
1525 SWAP(HChar*,pri1,pri2); SWAP(HChar**,sec1,sec2);
1526 SWAP(Bool,ist1,ist2); SWAP(Bool,isf1,isf2);
1559 SWAP(DiSym,di->symtab[j],di->symtab[j+1]);
1632 # undef SWAP macro
1654 # define SWAP macro
1709 # undef SWAP macro
[all...]
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java145 && 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/
H A DOpcodes.java234 int SWAP = 95; // - field in interface:Opcodes

Completed in 8541 milliseconds

123