Searched defs:SWAP (Results 1 - 25 of 51) sorted by relevance

123

/external/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/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dscgiserver.py2 SCGI-->WSGI application proxy, "SWAP".
7 application objects. To use it, subclass the SWAP class like so::
9 class TestAppHandler(swap.SWAP):
13 swap.SWAP.__init__(self, *args, **kwargs)
38 class SWAP(scgi_server.SCGIHandler): class in inherits:scgi_server.SCGIHandler
161 class SCGIAppHandler(SWAP):
165 SWAP.__init__(self, *args, **kwargs)
/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.h84 #define SWAP(X,Y) \ macro
/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/libdivsufsort/include/
H A Ddivsufsort_private.h145 #ifndef SWAP
146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) macro
147 #endif /* SWAP */
/external/libvncserver/common/
H A Dmd5.c48 # define SWAP(n) \ macro
51 # define SWAP(n) (n) macro
89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
338 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
/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/lib/
H A Dmd5.c42 #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);
324 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
H A Dsha1.c42 #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);
254 W (i) = SWAP (*words); \
/external/opencv3/modules/core/src/
H A Dlpsolver.cpp91 #define SWAP(type,a,b) {type tmp=(a);(a)=(b);(b)=tmp;} macro
213 SWAP(int,indexToRow[*iterator],indexToRow[0]);
351 SWAP(int,N[entering_index],B[leaving_index]);
352 SWAP(int,indexToRow[N[entering_index]],indexToRow[B[leaving_index]]);
/external/valgrind/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/opencv3/3rdparty/libtiff/
H A Dtif_fax3.c265 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro
306 SWAP(uint32*, sp->curruns, sp->refruns);
321 #undef SWAP macro
1376 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro
1407 SWAP(uint32*, sp->curruns, sp->refruns);
1427 #undef SWAP macro
/external/pdfium/third_party/libtiff/
H A Dtif_fax3.c265 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro
306 SWAP(uint32*, sp->curruns, sp->refruns);
321 #undef SWAP macro
1377 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro
1408 SWAP(uint32*, sp->curruns, sp->refruns);
1428 #undef SWAP macro
/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/javassist/src/main/javassist/bytecode/
H A DOpcode.java227 int SWAP = 95; field in interface:Opcode
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DOpcodes.java234 int SWAP = 95; // - field in interface:Opcodes
/external/valgrind/coregrind/m_debuginfo/
H A Dstorage.c1651 # define SWAP(ty,aa,bb) \ macro
1815 SWAP(Addr,sta1,sta2); SWAP(Addr,end1,end2); SWAP(Addr,toc1,toc2);
1816 SWAP(const HChar*,pri1,pri2); SWAP(const HChar**,sec1,sec2);
1817 SWAP(Bool,ist1,ist2); SWAP(Bool,isf1,isf2);
1852 SWAP(DiSym,di->symtab[j],di->symtab[j+1]);
1926 # undef SWAP macro
[all...]
/external/valgrind/coregrind/
H A Dm_transtab.c1011 # define SWAP(_lv1,_lv2) \ macro
1038 SWAP(eclasses[0], eclasses[1]);
1045 SWAP(eclasses[0], eclasses[2]);
1047 SWAP(eclasses[0], eclasses[1]);
1049 SWAP(eclasses[1], eclasses[2]);
1060 # undef SWAP macro
/external/valgrind/memcheck/
H A Dmc_main.c3496 # define SWAP(_w1,_w2) { UWord _t = _w1; _w1 = _w2; _w2 = _t; } macro
3497 SWAP( nia_to_ecu_cache[i].nia0, nia_to_ecu_cache[i].nia1 );
3498 SWAP( nia_to_ecu_cache[i].ecu0, nia_to_ecu_cache[i].ecu1 );
3499 # undef SWAP macro
/external/jarjar/lib/
H A Dasm-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/AnnotationVisitor.class " package org.objectweb.asm public ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/AnnotationVisitor.class " package org.objectweb.asm public ...

Completed in 3522 milliseconds

123