Searched defs:arch (Results 1 - 25 of 156) sorted by relevance

1234567

/external/lldb/source/Target/
H A DUnwindAssembly.cpp19 UnwindAssembly::FindPlugin (const ArchSpec &arch) argument
27 std::unique_ptr<UnwindAssembly> assembly_profiler_ap (create_callback (arch));
34 UnwindAssembly::UnwindAssembly (const ArchSpec &arch) : argument
35 m_arch (arch)
H A DABI.cpp22 ABI::FindPlugin (const ArchSpec &arch) argument
31 abi_sp = create_callback(arch);
/external/valgrind/main/tests/
H A Darch_test.c13 // - 0 if the machine matches the asked-for arch
14 // - 1 if it doesn't match but does match the name of another arch
15 // - 2 if it doesn't match the name of any arch
37 static Bool go(char* arch) argument
40 if ( 0 == strcmp( arch, "x86" ) ) return True;
44 if ( 0 == strcmp( arch, "x86" ) ) return True;
46 if ( 0 == strcmp( arch, "amd64" ) ) return True;
49 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
52 if ( 0 == strcmp( arch, "ppc64" ) ) return True;
54 if ( 0 == strcmp( arch, "ppc3
[all...]
/external/chromium_org/cloud_print/virtual_driver/win/
H A Dvirtual_driver_helpers.cc54 base::win::OSInfo::WindowsArchitecture arch = local
56 return (arch == base::win::OSInfo::X64_ARCHITECTURE) ||
57 (arch == base::win::OSInfo::IA64_ARCHITECTURE);
/external/chromium_org/third_party/opus/src/celt/arm/
H A Darmcpu.c157 int arch = 0; local
160 return arch;
161 arch++;
164 return arch;
165 arch++;
168 return arch;
169 arch++;
171 return arch;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
H A Druntests.bat15 REM default values for os, ws and arch
18 set arch=x86 variable
53 if x%1==x-arch set arch=%2 && shift && shift && goto processcmdlineargs variable
74 set antRunner=%vm% -cp eclipse\startup.jar -Dosgi.ws=%ws% -Dosgi.os=%os% -Dosgi.arch=%arch% org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner
76 if %installmode%==noclean %antRunner% -file test.xml setup -Dws=%ws% -Dos=%os% -Darch=%arch% "-D%installmode%=true" -logger org.apache.tools.ant.DefaultLogger
85 %antRunner% -file test.xml %tests% -Dws=%ws% -Dos=%os% -Darch=%arch% %properties% "-D%installmode%=true" -logger org.apache.tools.ant.DefaultLogger
/external/kernel-headers/original/uapi/linux/
H A Dseccomp.h34 * @arch: indicates system call convention as an AUDIT_ARCH_* value
42 __u32 arch; member in struct:seccomp_data
/external/libopus/celt/arm/
H A Darmcpu.c157 int arch = 0; local
160 return arch;
161 arch++;
164 return arch;
165 arch++;
168 return arch;
169 arch++;
171 return arch;
/external/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp33 { LLDB_OPT_SET_1 , false, "arch" , 'a', required_argument, NULL, 0, eArgTypeArchitecture , "Specify the architecture for the target."},
49 OptionGroupArchitecture::GetArchitecture (Platform *platform, ArchSpec &arch) argument
52 arch.Clear();
54 arch.SetTriple(m_arch_str.c_str(), platform);
55 return arch.IsValid();
H A DOptionGroupPlatform.cpp27 const ArchSpec &arch,
39 if (platform_arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch))
43 arch.GetTriple().getTriple().c_str());
49 else if (arch.IsValid())
51 platform_sp = Platform::Create (arch, &platform_arch, error);
26 CreatePlatformWithOptions(CommandInterpreter &interpreter, const ArchSpec &arch, bool make_selected, Error& error, ArchSpec &platform_arch) const argument
/external/ltrace/
H A Dbreakpoint.h68 struct arch_breakpoint_data arch; member in struct:breakpoint
/external/chromium_org/third_party/skia/experimental/webtry/
H A Dseccomp_bpf.h46 __u32 arch; member in struct:seccomp_data
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.h54 /*@owned@*/ yasm_arch *arch; /**< Target architecture */ member in struct:yasm_object
83 * \param arch architecture
91 /*@kept@*/ yasm_arch *arch,
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformMacOSX.cpp64 PlatformMacOSX::CreateInstance (bool force, const ArchSpec *arch) argument
71 if (create == false && arch && arch->IsValid())
73 const llvm::Triple &triple = arch->GetTriple();
85 create = !arch->TripleVendorWasSpecified();
104 create = !arch->TripleOSWasSpecified();
177 PlatformMacOSX::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) argument
180 return ARMGetSupportedArchitectureAtIndex (idx, arch);
182 return x86GetSupportedArchitectureAtIndex (idx, arch);
/external/skia/experimental/webtry/
H A Dseccomp_bpf.h44 __u32 arch; member in struct:seccomp_data
/external/chromium_org/base/
H A Dsys_info_win.cc96 win::OSInfo::WindowsArchitecture arch = local
98 switch (arch) {
/external/chromium_org/base/test/expectations/
H A Dexpectation.cc123 std::string arch = base::SysInfo::OperatingSystemArchitecture(); local
124 if (arch == "x86")
126 else if (arch == "x86_64")
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dtrap.h21 uint32_t arch; member in struct:sandbox::arch_seccomp_data
/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/
H A Dcommon.c107 static const char *normalize_arch(char *arch) argument
109 if (!strcmp(arch, "x86_64"))
111 if (arch[0] == 'i' && arch[2] == '8' && arch[3] == '6')
113 if (!strcmp(arch, "sun4u") || !strncmp(arch, "sparc", 5))
116 if (!strcmp(arch, "aarch64") || !strcmp(arch, "arm64"))
119 if (!strncmp(arch, "ar
140 const char *arch, *cross_env; local
[all...]
/external/lldb/examples/lookup/
H A Dmain.cpp66 { "arch", required_argument, NULL, 'a' },
80 " " PROGRAM_NAME " [[--arch=<ARCH>] [--platform=<PLATFORM>] [--verbose] [--help] --] <PATH> <ADDRESS> [<ADDRESS>....]\n"
87 " " PROGRAM_NAME " --arch=x86_64 -- /usr/lib/dyld 0x100000000\n"
105 const char *arch = NULL; local
141 if (arch != NULL)
143 fprintf (stderr, "error: the --arch option can only be specified once\n");
146 arch = optarg;
186 arch,
/external/lldb/source/Commands/
H A DCommandObjectDisassemble.h80 ArchSpec arch; member in class:lldb_private::CommandObjectDisassemble::CommandOptions
/external/lldb/source/Host/common/
H A DSymbols.cpp117 const ArchSpec *arch)
150 const ArchSpec *arch)
115 FindSymbolFileInBundle(const FileSpec& symfile_bundle, const lldb_private::UUID *uuid, const ArchSpec *arch) argument
/external/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp84 ArchSpec arch = process->GetArchitecture(); local
85 switch (arch.GetMachine())
88 switch (arch.GetTriple().getOS())
99 __FUNCTION__, arch.GetTriple().getOS());
107 __FUNCTION__, arch.GetMachine());
140 ELFLinuxPrStatus::Parse(DataExtractor &data, ArchSpec &arch) argument
144 switch(arch.GetCore())
163 ELFLinuxPrPsInfo::Parse(DataExtractor &data, ArchSpec &arch) argument
167 switch(arch.GetCore())
/external/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.h45 CreateInstance (const lldb_private::ArchSpec &arch);
126 UnwindAssemblyInstEmulation (const lldb_private::ArchSpec &arch, argument
128 UnwindAssembly (arch),
/external/lldb/source/Symbol/
H A DUnwindTable.cpp57 ArchSpec arch; local
58 if (m_object_file.GetArchitecture (arch))
60 m_assembly_profiler = UnwindAssembly::FindPlugin (arch);

Completed in 5441 milliseconds

1234567