/external/chromium_org/v8/build/ |
detect_v8_host_arch.py | 43 host_arch = platform.machine() 46 if re.match(r'i.86', host_arch) or host_arch == 'i86pc': 47 host_arch = 'ia32' 48 elif host_arch in ['x86_64', 'amd64']: 49 host_arch = 'x64' 50 elif host_arch.startswith('arm'): 51 host_arch = 'arm' 52 elif host_arch == 'aarch64': 53 host_arch = 'arm64 [all...] |
/external/chromium_org/build/ |
detect_host_arch.py | 15 host_arch = platform.machine() 18 if re.match(r'i.86', host_arch) or host_arch == 'i86pc': 19 host_arch = 'ia32' 20 elif host_arch in ['x86_64', 'amd64']: 21 host_arch = 'x64' 22 elif host_arch.startswith('arm'): 23 host_arch = 'arm' 29 if host_arch == 'x64' and platform.architecture()[0] == '32bit': 30 host_arch = 'ia32 [all...] |
/external/compiler-rt/test/asan/Unit/ |
lit.site.cfg.in | 27 if config.host_os == 'Linux' and config.host_arch == 'x86_64':
|
/external/chromium_org/chrome/installer/linux/sysroot_scripts/ |
install-debian.wheezy.sysroot.py | 77 host_arch = '' 79 host_arch = 'amd64' 81 host_arch = 'i386' 91 host_arch = 'amd64' 93 host_arch = 'i386' 94 if host_arch != options.arch:
|
/development/testrunner/ |
android_build.py | 74 The triple (HOST_OS, HOST_ARCH, HOST_OS-HOST_ARCH). 87 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1) 88 if not (host_os and host_arch): 91 return (host_os, host_arch, "%s-%s" % (host_os, host_arch))
|
/external/compiler-rt/unittests/ |
lit.common.unit.configured.in | 12 config.host_arch = "@HOST_ARCH@"
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
GDBRemoteCommunicationServer.cpp | 213 ArchSpec host_arch (Host::GetArchitecture ()); 214 const llvm::Triple &host_triple = host_arch.GetTriple(); 217 response.Printf (";ptrsize:%u;",host_arch.GetAddressByteSize()); 219 uint32_t cpu = host_arch.GetMachOCPUType(); 220 uint32_t sub = host_arch.GetMachOCPUSubType();
|
/external/lldb/source/Host/common/ |
Host.cpp | 308 ArchSpec host_arch; local 410 const ArchSpec &host_arch = GetArchitecture (eSystemDefaultArchitecture); local 411 const llvm::StringRef &str_ref = host_arch.GetTriple().getVendorName(); 423 const ArchSpec &host_arch = GetArchitecture (eSystemDefaultArchitecture); local 424 const llvm::StringRef &str_ref = host_arch.GetTriple().getOSName(); 436 const ArchSpec &host_arch = GetArchitecture (eSystemDefaultArchitecture); local 437 g_host_triple.SetCString(host_arch.GetTriple().getTriple().c_str()); [all...] |
/external/llvm/ |
configure | 682 HOST_ARCH [all...] |