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

1234

/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/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.c149 int arch = 0; local
152 return arch;
153 arch++;
156 return arch;
157 arch++;
160 return arch;
161 arch++;
163 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/strace/
H A DAndroid.mk108 arch := $(TARGET_ARCH) macro
115 arch := i386 macro
129 $(LOCAL_PATH)/linux/$(arch)
/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,
H A Dvalue.c43 #include "arch.h"
388 * WRT reg is left in expr for arch to look at.
624 yasm_arch *arch)
639 if (yasm_arch_floatnum_tobytes(arch, value->abs->terms[0].data.flt,
714 if (yasm_arch_intnum_tobytes(arch, outval, buf, destsize, valsize, 0,
727 if (yasm_arch_intnum_tobytes(arch, intn, buf, destsize, valsize, 0, bc,
733 if (yasm_arch_intnum_tobytes(arch, outval, buf, destsize, valsize, 0,
622 yasm_value_output_basic(yasm_value *value, unsigned char *buf, size_t destsize, yasm_bytecode *bc, int warn, yasm_arch *arch) argument
/external/chromium_org/base/
H A Dsys_info_win.cc91 win::OSInfo::WindowsArchitecture arch = local
93 switch (arch) {
/external/chromium_org/base/test/expectations/
H A Dexpectation.cc120 std::string arch = base::SysInfo::OperatingSystemArchitecture(); local
121 if (arch == "x86")
123 else if (arch == "x86_64")
/external/chromium_org/tools/gn/
H A Dargs.cc184 const char* arch = NULL; local
191 arch = kX86;
194 arch = kX64;
204 arch = kX64;
206 arch = kX86;
209 arch = kArm;
218 Value arch_val(NULL, std::string(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/chromium_org/chrome/browser/metrics/
H A Dchrome_browser_main_extra_parts_metrics.cc62 base::CPU::IntelMicroArchitecture arch = cpu.GetIntelMicroArchitecture(); local
63 UMA_HISTOGRAM_ENUMERATION("Platform.IntelMaxMicroArchitecture", arch,
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.h28 uint32_t arch; member in struct:sandbox::arch_seccomp_data
36 unsigned int arch; member in struct:sandbox::arch_sigsys
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
H A Dlc3barch.c41 yasm_arch_base *arch; local
55 arch = yasm_xmalloc(sizeof(yasm_arch_base));
56 arch->module = &yasm_lc3b_LTX_arch;
57 return (yasm_arch *)arch;
61 lc3b_destroy(/*@only@*/ yasm_arch *arch) argument
63 yasm_xfree(arch);
67 lc3b_get_machine(/*@unused@*/ const yasm_arch *arch) argument
73 lc3b_get_address_size(/*@unused@*/ const yasm_arch *arch) argument
79 lc3b_set_var(yasm_arch *arch, const char *var, unsigned long val) argument
85 lc3b_get_fill(const yasm_arch *arch) argument
121 lc3b_get_reg_size( yasm_arch *arch, uintptr_t reg) argument
127 lc3b_reggroup_get_reg( yasm_arch *arch, uintptr_t reggroup, unsigned long regindex) argument
135 lc3b_reg_print( yasm_arch *arch, uintptr_t reg, FILE *f) argument
141 lc3b_floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt, unsigned char *buf, size_t destsize, size_t valsize, size_t shift, int warn) argument
151 lc3b_ea_create_expr(yasm_arch *arch, yasm_expr *e) argument
[all...]
H A Dlc3bbc.c242 yasm_lc3b__intnum_tobytes(yasm_arch *arch, const yasm_intnum *intn, argument
/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/chromium_org/chrome/browser/component_updater/pnacl/
H A Dpnacl_component_installer.cc81 std::string arch = SanitizeForPath(OmahaQueryParams::getNaclArch()); local
82 return base_path.AppendASCII("_platform_specific").AppendASCII(arch);
155 // PNaCl manifest indicates this is the correct arch-specific package.
188 std::string arch; local
189 if (!pnacl_manifest.GetStringASCII("pnacl-arch", &arch)) {
190 LOG(WARNING) << "'pnacl-arch' field is missing from pnacl-manifest!";
193 if (arch.compare(OmahaQueryParams::getNaclArch()) != 0) {
194 LOG(WARNING) << "'pnacl-arch' field in manifest is invalid ("
195 << arch << " v
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
H A Dnasm-listfmt.c59 yasm_arch *arch; member in struct:nasm_listfmt_output_info
93 info->arch)) {
123 return yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
133 retval = yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
144 yasm_arch *arch)
159 info.arch = arch;
143 nasm_listfmt_output(yasm_listfmt *listfmt, FILE *f, yasm_linemap *linemap, yasm_arch *arch) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-machine.h85 const char *arch; member in struct:elf_machine_handler
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp362 OwningPtr<Binary> arch; local
363 if (error(object::createBinary(Buffer.take(), arch), Filename))
366 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/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...]
/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
384 ThreadArchState* arch = (ThreadArchState*)&tst->arch; local
471 ThreadArchState* arch = (ThreadArchState*)&tst->arch; local
[all...]

Completed in 1529 milliseconds

1234