Searched defs:arm (Results 1 - 23 of 23) sorted by relevance

/external/capstone/cstool/
H A Dcstool_arm.c10 cs_arm *arm; local
17 arm = &(ins->detail->arm);
19 if (arm->op_count)
20 printf("\top_count: %u\n", arm->op_count);
22 for (i = 0; i < arm->op_count; i++) {
23 cs_arm_op *op = &(arm->operands[i]);
87 if (arm->cc != ARM_CC_AL && arm->cc != ARM_CC_INVALID)
88 printf("\tCode condition: %u\n", arm
[all...]
/external/compiler-rt/make/platform/
H A Dclang_mingw.mk11 SupportedArches := x86_64 i386 arm
13 Configs += builtins-x86_64 builtins-i386 builtins-arm
16 Arch.builtins-arm := arm
23 CFLAGS.builtins-arm := -target armv7-windows-gnu $(CFLAGS)
27 FUNCTIONS.builtins-arm := $(CommonFunctions) $(ArchFunctions.arm)
/external/google-breakpad/src/google_breakpad/processor/
H A Ddump_context.h83 void SetContextARM(MDRawContextARM* arm);
101 MDRawContextARM* arm; member in union:google_breakpad::DumpContext::__anon7536
/external/devlib/src/netstats/src/com/arm/devlib/trafficcatcher/
H A DTrafficMetricsService.java1 package com.arm.devlib.netstats;
/external/libvpx/libvpx/build/make/
H A Drtcd.pl281 sub arm() { subroutine
298 #include "vpx_ports/arm.h"
433 arm;
436 arm;
/external/capstone/tests/
H A Dtest_winkernel.cpp49 namespace arm { namespace
51 } // namespace arm
109 arm::test();
H A Dtest_arm.c35 cs_arm *arm; local
42 arm = &(ins->detail->arm);
44 if (arm->op_count)
45 printf("\top_count: %u\n", arm->op_count);
47 for (i = 0; i < arm->op_count; i++) {
48 cs_arm_op *op = &(arm->operands[i]);
112 if (arm->cc != ARM_CC_AL && arm->cc != ARM_CC_INVALID)
113 printf("\tCode condition: %u\n", arm
[all...]
/external/valgrind/coregrind/m_gdbserver/
H A Dvalgrind-low-arm.c57 { "", 512, 0 }, // as previous versions of arm <-> gdb placed
156 (avmas.main & 1 ? "thumb" : "arm"));
163 dlog (1, "%p fnname %s lookupsym failed?. Assume arm\n",
168 // Can't find function name. We assume this is arm
169 dlog (1, "%p unknown fnname?. Assume arm\n", C2v (pc));
186 VexGuestARMState* arm = (VexGuestARMState*) get_arch (set, tst); local
191 case 0: VG_(transfer) (&arm->guest_R0, buf, dir, size, mod); break;
192 case 1: VG_(transfer) (&arm->guest_R1, buf, dir, size, mod); break;
193 case 2: VG_(transfer) (&arm->guest_R2, buf, dir, size, mod); break;
194 case 3: VG_(transfer) (&arm
290 VexGuestARMState* arm = (VexGuestARMState*)&tst->arch.vex; local
[all...]
H A Dvalgrind-low-arm64.c147 VexGuestARM64State* arm = (VexGuestARM64State*) get_arch (set, tst); local
152 case 0: VG_(transfer) (&arm->guest_X0, buf, dir, size, mod); break;
153 case 1: VG_(transfer) (&arm->guest_X1, buf, dir, size, mod); break;
154 case 2: VG_(transfer) (&arm->guest_X2, buf, dir, size, mod); break;
155 case 3: VG_(transfer) (&arm->guest_X3, buf, dir, size, mod); break;
156 case 4: VG_(transfer) (&arm->guest_X4, buf, dir, size, mod); break;
157 case 5: VG_(transfer) (&arm->guest_X5, buf, dir, size, mod); break;
158 case 6: VG_(transfer) (&arm->guest_X6, buf, dir, size, mod); break;
159 case 7: VG_(transfer) (&arm->guest_X7, buf, dir, size, mod); break;
160 case 8: VG_(transfer) (&arm
[all...]
/external/capstone/bindings/python/pyx/
H A Dccapstone.pyx5 from . import arm, x86, mips, ppc, arm64, sparc, systemz, xcore, CsError namespace
27 arm.get_arch_info(detail.arch.arm)
318 archs = { "arm": capstone.CS_ARCH_ARM, "arm64": capstone.CS_ARCH_ARM64, \
/external/capstone/suite/arm/
H A Dtest_arm_regression.c59 cs_arm *arm; local
66 arm = &(ins->detail->arm);
68 if (arm->op_count)
69 _this_printf("\top_count: %u\n", arm->op_count);
71 for (i = 0; i < arm->op_count; i++) {
72 cs_arm_op *op = &(arm->operands[i]);
119 if (arm->cc != ARM_CC_AL && arm->cc != ARM_CC_INVALID) {
120 _this_printf("\tCode condition: %u\n", arm
[all...]
/external/dhcpcd-6.8.2/
H A Darp.c128 struct arp_msg arm; local
157 if (ar.ar_pln != sizeof(arm.sip.s_addr))
179 memcpy(&arm.sha, hw_s, ar.ar_hln);
180 memcpy(&arm.sip.s_addr, hw_s + ar.ar_hln, ar.ar_pln);
181 memcpy(&arm.tha, hw_t, ar.ar_hln);
182 memcpy(&arm.tip.s_addr, hw_t + ar.ar_hln, ar.ar_pln);
187 astate->conflicted_cb(astate, &arm);
/external/google-breakpad/src/processor/
H A Ddump_context.cc120 BPLOG(ERROR) << "DumpContext cannot get arm context";
124 return context_.arm;
212 void DumpContext::SetContextARM(MDRawContextARM* arm) { argument
213 context_.arm = arm;
247 delete context_.arm;
H A Dmicrodump.cc60 static const char kArmArchitecture[] = "arm";
100 void MicrodumpContext::SetContextARM(MDRawContextARM* arm) { argument
102 DumpContext::SetContextARM(arm);
267 MDRawContextARM* arm = new MDRawContextARM(); local
268 memcpy(arm, &cpu_state_raw[0], cpu_state_raw.size());
269 context_->SetContextARM(arm);
276 MDRawContextARM64* arm = new MDRawContextARM64(); local
277 memcpy(arm, &cpu_state_raw[0], cpu_state_raw.size());
278 context_->SetContextARM64(arm);
/external/valgrind/memcheck/tests/vbit-test/
H A Dvtest.h181 unsigned arm : 1; member in struct:__anon29648
/external/clang/lib/Driver/
H A DTools.h271 namespace arm { namespace in namespace:clang::driver::tools
282 } // end namespace arm
760 namespace arm { namespace in namespace:clang::driver::tools
769 } // end namespace arm
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DTriple.h47 arm, // ARM; arm, armv.*, xscale enumerator in enum:llvm::Triple::ArchType
/external/capstone/bindings/python/capstone/
H A D__init__.py264 from . import arm, arm64, mips, ppc, sparc, systemz, x86, xcore namespace
269 ('arm', arm.CsArm),
546 self.writeback, self.mem_barrier, self.operands) = arm.get_arch_info(self._detail.arch.arm)
905 archs = { "arm": CS_ARCH_ARM, "arm64": CS_ARCH_ARM64, \
/external/capstone/include/
H A Dcapstone.h215 #include "arm.h"
239 cs_arm arm; // ARM architecture (including Thumb/Thumb2) member in union:cs_detail::__anon1120
252 // of corresponding architecture, such as 'arm_insn' in arm.h for ARM,
536 Find the instruction id from header file of corresponding architecture (arm.h for ARM,
552 Find the instruction id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)
567 Find the group id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)
582 Find the group id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)
601 Find the register id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)
619 Find the register id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)
637 Find the operand type in header file of corresponding architecture (arm
[all...]
/external/capstone/bindings/java/capstone/
H A DCapstone.java28 public Arm.UnionOpInfo arm; field in class:Capstone.UnionArch
162 op_info = new Arm.OpInfo((Arm.UnionOpInfo) detail.arch.arm);
/external/llvm/include/llvm/ADT/
H A DTriple.h49 arm, // ARM (little endian): arm, armv.*, xscale enumerator in enum:llvm::Triple::ArchType
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DTriple.h49 arm, // ARM (little endian): arm, armv.*, xscale enumerator in enum:llvm::Triple::ArchType
/external/valgrind/VEX/priv/
H A Dguest_arm_toIR.c188 /*--- arm insn stream. ---*/
13677 /* The arm back end doesn't support use of Iop_F32toI32U or
14053 static void mk_ldm_stm ( Bool arm, /* True: ARM, False: Thumb */ argument
14074 assign(oldRnT, arm ? getIRegA(rN) : getIRegT(rN));
14103 if (arm)
14205 if (arm) {
14219 : (arm ? getIRegA(r) : getIRegT(r) ) );
14227 if (arm)
16117 DIP("\t(arm) 0x%x: ", (UInt)guest_R15_curr_instr_notENC);
17009 mk_ldm_stm( True/*arm*/, r
[all...]

Completed in 925 milliseconds