Home
last modified time | relevance | path

Searched refs:SWAP (Results 1 – 25 of 75) sorted by relevance

123

/external/libvpx/libvpx/vpx_dsp/x86/
Davg_ssse3_x86_64.asm52 SWAP %6, %1
53 SWAP %3, %9
54 SWAP %8, %6
62 SWAP 1, 8
63 SWAP 3, 9
68 SWAP 5, 8
69 SWAP 7, 9
75 SWAP 2, 8
76 SWAP 3, 9
81 SWAP 6, 8
[all …]
Dinv_wht_sse2.asm18 SWAP 1, 3, 2
44 SWAP 1, 5 ; m1 b
45 SWAP 2, 4 ; m2 c
/external/libdivsufsort/lib/
Dtrsort.c121 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 …]
Dsssort.c216 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/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSWAP.java26 public class SWAP extends StackInstruction implements StackConsumer, StackProducer { class
28 public SWAP() { in SWAP() method in SWAP
29 super(org.apache.bcel.Const.SWAP); in SWAP()
DInstructionConstants.java88 StackInstruction SWAP = new SWAP(); field
223 INSTRUCTIONS[Const.SWAP] = SWAP; in Clinit()
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_dct_sse2.asm30 SWAP 1, 4 ; m1 c1
31 SWAP 2, 3 ; m2 d1
32 SWAP 3, 5 ; m3 b1
57 SWAP 1, 2
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AMDGPU/
Dds-err.s65 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,0)
68 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,3)
71 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,17)
74 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,32)
Dds.s538 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,1)
542 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,2)
546 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,4)
550 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,8)
554 ds_swizzle_b32 v8, v2 offset:swizzle(SWAP,16)
/external/libaom/libaom/av1/encoder/x86/
Ddct_sse2.asm30 SWAP 1, 4 ; m1 c1
31 SWAP 2, 3 ; m2 d1
32 SWAP 3, 5 ; m3 b1
57 SWAP 1, 2
/external/llvm/test/CodeGen/AMDGPU/
Datomic_cmp_swap_local.ll7 ; SICI: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc
9 ; 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/clang/test/CodeGenObjC/
Ddot-syntax.m61 #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/libhevc/encoder/
Dihevce_common_utils.h70 SWAP(primary_array[i], primary_array[j]); \
93 SWAP(primary_array[i], primary_array[j]); \
94 SWAP(companion_array[i], companion_array[j]); \
110 SWAP(primary_array[i], primary_array[j]); \
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DLoggerRuntime.java99 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor()
113 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor()
128 mv.visitInsn(Opcodes.SWAP); in generateDataAccessor()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Datomic_cmp_swap_local.ll11 ; SICI-DAG: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x1c
13 ; GFX89-DAG: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x70
16 ; GCN-DAG: v_mov_b32_e32 [[VSWAP:v[0-9]+]], [[SWAP]]
73 ; SICI-DAG: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x12
75 ; GFX89-DAG: s_load_dword [[SWAP:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x48
78 ; GCN-DAG: v_mov_b32_e32 [[VSWAP:v[0-9]+]], [[SWAP]]
/external/mesa3d/src/intel/compiler/
Dbrw_fs_bank_conflicts.cpp262 #define SWAP(x, y) do { \ macro
297 SWAP(v, u.v); in operator =()
298 SWAP(size, u.size); in operator =()
397 SWAP(max_reg, p.max_reg); in operator =()
398 SWAP(offsets, p.offsets); in operator =()
399 SWAP(atoms, p.atoms); in operator =()
753 SWAP(v, p.v); in operator =()
754 SWAP(size, p.size); in operator =()
860 SWAP(map.v[r], map.v[best_s]); in optimize_reg_permutation()
/external/e2fsprogs/intl/
DgettextP.h54 # define W(flag, data) ((flag) ? SWAP (data) : (data))
60 # define SWAP(i) bswap_32 (i) macro
63 SWAP (i) in SWAP() function
/external/libaom/libaom/aom_dsp/x86/
Dinv_wht_sse2.asm20 SWAP 1, 3, 2
46 SWAP 1, 5 ; m1 b
47 SWAP 2, 4 ; m2 c
/external/libhevc/decoder/
Dihevcd_intra_pred_mode_prediction.c273 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/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java67 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/wpa_supplicant_8/src/crypto/
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/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DOldClassInstrumentor.java208 instructions.add(new InsnNode(Opcodes.SWAP)); // A B [] [] C in interceptInvokeVirtualMethodWithoutInvokeDynamic()
210 instructions.add(new InsnNode(Opcodes.SWAP)); // A B [] [] 2 C in interceptInvokeVirtualMethodWithoutInvokeDynamic()
219 instructions.add(new InsnNode(Opcodes.SWAP)); // A B [] [] 2 (C) in interceptInvokeVirtualMethodWithoutInvokeDynamic()
226 instructions.add(new InsnNode(Opcodes.SWAP)); // null [] in interceptInvokeVirtualMethodWithoutInvokeDynamic()
303 instructions.add(new InsnNode(Opcodes.SWAP)); in box()
/external/epid-sdk/ext/ipp/sources/ippcp/
Dpcpbnarithsub.c106 SWAP(nsA, nsB);
133 SWAP(nsA, nsB);
Dpcpbnarithadd.c106 SWAP(nsA, nsB);
133 SWAP(nsA, nsB);
Dpcpprng_gen.c100 SWAP(xBNU[0],xBNU[4]); in SHA1_G()
101 SWAP(xBNU[1],xBNU[3]); in SHA1_G()

123