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

12

/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
35 static Bool go(char* arch) argument
38 if ( 0 == strcmp( arch, "x86" ) ) return True;
41 if ( 0 == strcmp( arch, "x86" ) ) return True;
42 if ( 0 == strcmp( arch, "amd64" ) ) return True;
45 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
48 if ( 0 == strcmp( arch, "ppc64" ) ) return True;
49 if ( 0 == strcmp( arch, "ppc3
[all...]
/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/llvm/lib/Linker/
H A DLinkArchives.cpp117 Archive* arch = AutoArch.get(); local
119 if (!arch)
122 if (!arch->isBitcodeArchive()) {
140 // Find the modules we need to link into the target module. Note that arch
144 if (!arch->findModulesDefiningSymbols(UndefinedSymbols, Modules, &ErrMsg))
/external/strace/
H A DAndroid.mk108 arch := $(TARGET_ARCH) macro
115 arch := i386 macro
129 $(LOCAL_PATH)/linux/$(arch)
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
H A DOs.java34 System.getProperty("os.arch").toLowerCase(Locale.ENGLISH);
55 private String arch; field in class:Os
160 * @param arch The OS architecture
162 public void setArch(String arch) { argument
163 this.arch = arch.toLowerCase(Locale.ENGLISH);
184 return isOs(family, name, arch, version);
214 * @param arch the OS architecture to check for
218 public static boolean isArch(String arch) { argument
219 return isOs(null, null, arch, nul
245 isOs(String family, String name, String arch, String version) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DJmeSystemDelegate.java105 private boolean is64Bit(String arch) { argument
106 if (arch.equals("x86")) {
108 } else if (arch.equals("amd64")) {
110 } else if (arch.equals("x86_64")) {
112 } else if (arch.equals("ppc") || arch.equals("PowerPC")) {
114 } else if (arch.equals("ppc64")) {
116 } else if (arch.equals("i386") || arch.equals("i686")) {
118 } else if (arch
[all...]
/external/kernel-headers/original/linux/
H A Dseccomp.h34 * @arch: indicates system call convention as an AUDIT_ARCH_* value
42 __u32 arch; member in struct:seccomp_data
/external/llvm/lib/MC/MCDisassembler/
H A DEDOperand.cpp33 Triple::ArchType arch = Disassembler.TgtTriple.getArch(); local
35 if (arch == Triple::x86 ||
36 arch == Triple::x86_64) {
59 else if (arch == Triple::arm ||
60 arch == Triple::thumb) {
131 Triple::ArchType arch = Disassembler.TgtTriple.getArch(); local
133 switch (arch) {
175 if (segmentReg != 0 && arch == Triple::x86_64) {
H A DEDDisassembler.cpp57 /// @arg arch - The Triple::ArchType for the desired architecture
58 static const char *tripleFromArch(Triple::ArchType arch) { argument
62 if (arch == triplemap[infoIndex].Arch)
73 /// @arg arch - The target architecture
75 static int getLLVMSyntaxVariant(Triple::ArchType arch, argument
80 if (arch == Triple::x86 || arch == Triple::x86_64)
84 if (arch == Triple::x86 || arch == Triple::x86_64)
88 if (arch
96 getDisassembler(Triple::ArchType arch, AssemblySyntax syntax) argument
[all...]
/external/llvm/lib/Archive/
H A DArchiveWriter.cpp417 OwningPtr<MemoryBuffer> arch; local
418 if (error_code ec = MemoryBuffer::getFile(TmpArchive.c_str(), arch)) {
423 const char* base = arch->getBufferStart();
461 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
465 } // free arch.
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp340 OwningPtr<Binary> arch; local
341 if (error(object::createBinary(Buffer.take(), arch), Filename))
344 if (object::Archive *a = dyn_cast<object::Archive>(arch.get())) {
/external/qemu/hw/
H A Dfw_cfg.c56 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL); local
57 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
90 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL); local
91 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
191 int arch = !!(key & FW_CFG_ARCH_LOCAL); local
198 s->entries[arch][key].data = data;
199 s->entries[arch][key].len = len;
235 int arch = !!(key & FW_CFG_ARCH_LOCAL); local
245 s->entries[arch][key].data = data;
246 s->entries[arch][ke
[all...]
/external/valgrind/main/VEX/priv/
H A Dmain_main.c70 static Bool are_valid_hwcaps ( VexArch arch, UInt hwcaps );
71 static HChar* show_hwcaps ( VexArch arch, UInt hwcaps );
783 const HChar* LibVEX_ppVexArch ( VexArch arch )
785 switch (arch) {
797 const HChar* LibVEX_ppVexHwCaps ( VexArch arch, UInt hwcaps ) argument
799 HChar* str = show_hwcaps(arch,hwcaps);
1005 static HChar* show_hwcaps ( VexArch arch, UInt hwcaps ) argument
1007 switch (arch) {
1018 static Bool are_valid_hwcaps ( VexArch arch, UInt hwcaps ) argument
1020 return show_hwcaps(arch,hwcap
[all...]
/external/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c264 struct fat_arch arch; local
281 arch.cputype = ntohl(arch_be->cputype);
282 arch.cpusubtype = ntohl(arch_be->cpusubtype);
283 arch.offset = ntohl(arch_be->offset);
284 arch.size = ntohl(arch_be->size);
285 if (arch.cputype == cputype) {
286 if (ii->img_szB < arch.offset + arch.size)
288 ii->macho_img = ii->img + arch.offset;
289 ii->macho_img_szB = arch
[all...]
H A Dlauncher-darwin.c140 /* Examine the client and work out which arch it is for */
158 // If it's thin, return that arch.
168 // If it's fat, look for a good arch.
174 // If only one fat arch, use it.
179 // Scan fat headers for default arch.
184 // Scan fat headers for any supported arch.
207 const char *arch; local
240 if (0 == strncmp(argv[i], "--arch=", 7))
289 VG_(debugLog)(1, "launcher", "arch '%s' IS NOT installed\n", valid_archs[i].valgrind_name);
292 VG_(debugLog)(1, "launcher", "arch '
[all...]
H A Dpub_core_threadstate.h295 ThreadArchState arch; member in struct:__anon13838
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-elf.c227 ThreadArchState* arch = (ThreadArchState*)&tst->arch; local
252 regs->eflags = LibVEX_GuestX86_get_eflags( &arch->vex );
253 regs->esp = arch->vex.guest_ESP;
254 regs->eip = arch->vex.guest_EIP;
256 regs->ebx = arch->vex.guest_EBX;
257 regs->ecx = arch->vex.guest_ECX;
258 regs->edx = arch->vex.guest_EDX;
259 regs->esi = arch->vex.guest_ESI;
260 regs->edi = arch
375 ThreadArchState* arch = (ThreadArchState*)&tst->arch; local
454 ThreadArchState* arch = (ThreadArchState*)&tst->arch; local
[all...]
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-darwin.c583 ThreadArchState* arch = &VG_(threads)[1].arch; local
592 LibVEX_GuestX86_initialise(&arch->vex);
595 VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestX86State));
596 VG_(memset)(&arch->vex_shadow2, 0, sizeof(VexGuestX86State));
599 arch->vex.guest_ESP = iifii.initial_client_SP;
600 arch->vex.guest_EIP = iifii.initial_client_IP;
607 LibVEX_GuestAMD64_initialise(&arch->vex);
610 VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestAMD64State));
611 VG_(memset)(&arch
[all...]
H A Dinitimg-linux.c971 ThreadArchState* arch = &VG_(threads)[1].arch; local
981 LibVEX_GuestX86_initialise(&arch->vex);
984 VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestX86State));
985 VG_(memset)(&arch->vex_shadow2, 0, sizeof(VexGuestX86State));
988 arch->vex.guest_ESP = iifii.initial_client_SP;
989 arch->vex.guest_EIP = iifii.initial_client_IP;
993 asm volatile("movw %%cs, %0" : : "m" (arch->vex.guest_CS));
994 asm volatile("movw %%ds, %0" : : "m" (arch->vex.guest_DS));
995 asm volatile("movw %%ss, %0" : : "m" (arch
[all...]
/external/llvm/include/llvm/Bitcode/
H A DArchive.h253 inline void splice(iterator dest, Archive& arch, iterator src) argument
254 { return members.splice(dest,arch.members,src); }
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c315 print("bad executable (no arch-compatible thread state)\n");
655 // Scan arch headers looking for a good one
659 struct fat_arch arch; local
660 if (arch_offset + sizeof(arch) > size) {
665 res = VG_(pread)(fd, &arch, sizeof(arch), arch_offset);
666 arch_offset += sizeof(arch);
667 if (sr_isError(res) || sr_Res(res) != sizeof(arch)) {
668 VG_(printf)("bad executable (corrupt fat arch) %x %llu\n",
669 arch
[all...]
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp177 llvm::Triple::ArchType arch = triple.getArch(); local
178 bool is64bit = arch == llvm::Triple::ppc64 || arch == llvm::Triple::x86_64;
266 AddPath("/boot/develop/headers/os/arch", System, true, false, false);
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp546 int arch = CV_GET_PROC_ARCH(cpu_info->model); local
557 const char** ipp_suffix = arch == CV_PROC_IA64 ? ipp_sfx_ia64 :
558 arch == CV_PROC_EM64T ? ipp_sfx_em64t : ipp_sfx_ia32;
559 const char** mkl_suffix = arch == CV_PROC_IA64 ? mkl_sfx_ia64 :
560 arch == CV_PROC_EM64T ? mkl_sfx_em64t : mkl_sfx_ia32;
589 (arch == CV_PROC_IA32_GENERIC || arch == CV_PROC_IA64 || arch == CV_PROC_EM64T) )
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c218 struct fat_arch arch; local
240 arch.cputype = VG_(ntohl)(arch_be->cputype);
241 arch.cpusubtype = VG_(ntohl)(arch_be->cpusubtype);
242 arch.offset = VG_(ntohl)(arch_be->offset);
243 arch.size = VG_(ntohl)(arch_be->size);
244 if (arch.cputype == cputype) {
245 if (ii->img_szB < arch.offset + arch.size) {
249 ii->macho_img = ii->img + arch.offset;
250 ii->macho_img_szB = arch
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jar ... String os private String ws private String nl private String arch private String uninstallIU private String extraArguments private java.io ...

Completed in 435 milliseconds

12