/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_dct_ssse3_x86_64.asm | 26 SWAP %3, %4 45 SWAP %2, %5 46 SWAP %4, %7 54 SWAP 1, 8 55 SWAP 3, 9 60 SWAP 5, 8 61 SWAP 7, 9 67 SWAP 2, 8 68 SWAP 3, 9 73 SWAP 6, 8 [all …]
|
D | vp9_dct_mmx.asm | 29 SWAP 1, 4 ; m1 c1 30 SWAP 2, 3 ; m2 d1 31 SWAP 3, 5 ; m3 b1 47 SWAP 2, 3, 0, 1, 4
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | inv_txfm_ssse3_x86_64.asm | 61 SWAP %2, %3 87 SWAP %3, %4 106 SWAP %2, %5 107 SWAP %4, %7 131 SWAP 3, 6 132 SWAP 1, 4 205 SWAP 2, 9 215 SWAP 1, 10 216 SWAP 3, 9 235 SWAP 5, 9 [all …]
|
D | fwd_txfm_ssse3_x86_64.asm | 38 SWAP %2, %3 64 SWAP %3, %4 83 SWAP %2, %5 84 SWAP %4, %7 110 SWAP 0, 1 117 SWAP 1, 4 118 SWAP 3, 6
|
D | inv_wht_sse2.asm | 17 SWAP 1, 3, 2 43 SWAP 1, 5 ; m1 b 44 SWAP 2, 4 ; m2 c
|
/external/libdivsufsort/lib/ |
D | trsort.c | 121 if(ISAd[SA[m / 2]] < ISAd[SA[m]]) { SWAP(SA[m], SA[m / 2]); } in tr_heapsort() 125 if((size % 2) == 0) { SWAP(SA[0], SA[m]); tr_fixdown(ISAd, SA, 0, m); } in tr_heapsort() 141 if(ISAd[*v1] > ISAd[*v2]) { SWAP(v1, v2); } in tr_median3() 155 if(ISAd[*v2] > ISAd[*v3]) { SWAP(v2, v3); } in tr_median5() 156 if(ISAd[*v4] > ISAd[*v5]) { SWAP(v4, v5); } in tr_median5() 157 if(ISAd[*v2] > ISAd[*v4]) { SWAP(v2, v4); SWAP(v3, v5); } in tr_median5() 158 if(ISAd[*v1] > ISAd[*v3]) { SWAP(v1, v3); } in tr_median5() 159 if(ISAd[*v1] > ISAd[*v4]) { SWAP(v1, v4); SWAP(v3, v5); } in tr_median5() 232 if(x == v) { SWAP(*b, *a); ++a; } in tr_partition() 238 if(x == v) { SWAP(*c, *d); --d; } in tr_partition() [all …]
|
D | sssort.c | 216 if(Td[PA[SA[m / 2]]] < Td[PA[SA[m]]]) { SWAP(SA[m], SA[m / 2]); } in ss_heapsort() 220 if((size % 2) == 0) { SWAP(SA[0], SA[m]); ss_fixdown(Td, PA, SA, 0, m); } in ss_heapsort() 237 if(Td[PA[*v1]] > Td[PA[*v2]]) { SWAP(v1, v2); } in ss_median3() 251 if(Td[PA[*v2]] > Td[PA[*v3]]) { SWAP(v2, v3); } in ss_median5() 252 if(Td[PA[*v4]] > Td[PA[*v5]]) { SWAP(v4, v5); } in ss_median5() 253 if(Td[PA[*v2]] > Td[PA[*v4]]) { SWAP(v2, v4); SWAP(v3, v5); } in ss_median5() 254 if(Td[PA[*v1]] > Td[PA[*v3]]) { SWAP(v1, v3); } in ss_median5() 255 if(Td[PA[*v1]] > Td[PA[*v4]]) { SWAP(v1, v4); SWAP(v3, v5); } in ss_median5() 366 SWAP(*first, *a); in ss_mintrosort() 372 if(x == v) { SWAP(*b, *a); ++a; } in ss_mintrosort() [all …]
|
/external/boringssl/src/crypto/aes/ |
D | internal.h | 61 #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/libvncserver/common/ |
D | md5.c | 48 # 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/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/ |
D | LoggerRuntime.java | 99 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor() 113 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor() 128 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor()
|
/external/clang/test/CodeGenObjC/ |
D | dot-syntax.m | 61 #define SWAP(T,a,b) { T a_tmp = a; a = b; b = a_tmp; } 93 SWAP(int, a.x, b.x); 94 // SWAP(__complex int, a.y, b.y); 95 SWAP(S, a.z, b.z);
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | atomic_cmp_swap_local.ll | 8 ; SICI: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc 10 ; VI: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x30 12 ; GCN-DAG: v_mov_b32_e32 [[VSWAP:v[0-9]+]], [[SWAP]] 60 ; SICI: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xa 62 ; VI: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x28 65 ; GCN-DAG: v_mov_b32_e32 [[VSWAP:v[0-9]+]], [[SWAP]]
|
/external/e2fsprogs/intl/ |
D | gettextP.h | 54 # define W(flag, data) ((flag) ? SWAP (data) : (data)) 60 # define SWAP(i) bswap_32 (i) macro 63 SWAP (i) in SWAP() function
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | scgiserver.py | 38 class SWAP(scgi_server.SCGIHandler): class 161 class SCGIAppHandler(SWAP): 165 SWAP.__init__(self, *args, **kwargs)
|
/external/valgrind/perf/ |
D | ffbench.c | 166 #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
|
/external/libhevc/decoder/ |
D | ihevcd_intra_pred_mode_prediction.c | 273 SWAP(cand_mode_list[0], cand_mode_list[1]); in ihevcd_intra_pred_mode_prediction() 277 SWAP(cand_mode_list[0], cand_mode_list[2]); in ihevcd_intra_pred_mode_prediction() 281 SWAP(cand_mode_list[1], cand_mode_list[2]); in ihevcd_intra_pred_mode_prediction()
|
/external/elfutils/lib/ |
D | md5.c | 42 #define SWAP(n) LE32 (n) macro 71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A); in md5_read_ctx() 72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); in md5_read_ctx() 73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C); in md5_read_ctx() 74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D); in md5_read_ctx() 324 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ in md5_process_block()
|
D | sha1.c | 42 #define SWAP(n) BE32 (n) macro 71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A); in sha1_read_ctx() 72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B); in sha1_read_ctx() 73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C); in sha1_read_ctx() 74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D); in sha1_read_ctx() 75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E); in sha1_read_ctx() 254 W (i) = SWAP (*words); \ in sha1_process_block()
|
/external/wpa_supplicant_8/src/crypto/ |
D | aes_i.h | 109 #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/proguard/src/proguard/optimize/evaluation/ |
D | EvaluationShrinker.java | 67 private static final int SWAP = InstructionConstants.OP_SWAP & 0xff; field in 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 << 8) | (POP << 16); 1103 SWAP : // ...XO -> ...OX in fixedDup_x1() [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/ |
D | ParallelSorterEmitter.java | 32 private static final Signature SWAP = field in ParallelSorterEmitter 71 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, SWAP, null); in generateSwap()
|
/external/e2fsprogs/lib/blkid/tests/ |
D | swap1.results | 2 LABEL='SWAP-TEST'
|
/external/libdivsufsort/include/ |
D | divsufsort_private.h | 145 #ifndef SWAP 146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) macro
|
/external/strace/xlat/ |
D | atomic_ops.in | 1 { OR1K_ATOMIC_SWAP, "SWAP" },
|
/external/llvm/test/CodeGen/SystemZ/ |
D | cmpxchg-02.ll | 50 ; CHECK-SHIFT: lhi [[SWAP:%r[0-9]+]], 88 52 ; CHECK-SHIFT: risbg [[SWAP]], {{%r[0-9]+}}, 32, 47, 0
|