/external/chromium_org/build/ |
detect_host_arch.py | 20 host_arch = platform.machine() 23 if re.match(r'i.86', host_arch) or host_arch == 'i86pc': 24 host_arch = 'ia32' 25 elif host_arch in ['x86_64', 'amd64']: 26 host_arch = 'x64' 27 elif host_arch.startswith('arm'): 28 host_arch = 'arm' 34 if host_arch == 'x64' and platform.architecture()[0] == '32bit': 35 host_arch = 'ia32 [all...] |
/external/chromium_org/chrome/installer/linux/sysroot_scripts/ |
install-debian.wheezy.sysroot.py | 77 host_arch = '' 79 host_arch = 'amd64' 81 host_arch = 'i386' 83 # Figure out host arch, like the host_arch variable in build/common.gypi. 86 host_arch = 'amd64' 88 host_arch = 'i386' 89 if host_arch != options.arch:
|
/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/third_party/openssl/openssl/ |
Apps-config.mk | 121 ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86) 122 host_arch := x86 macro 124 host_arch := unknown_arch macro 127 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) 129 host_src_files := $(common_src_files) $($(host_arch)_src_files) 130 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files))
|
Ssl-config.mk | 118 ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86) 119 host_arch := x86 macro 121 host_arch := unknown_arch macro 124 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) 126 host_src_files := $(common_src_files) $($(host_arch)_src_files) 127 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files))
|
import_openssl.sh | 338 ifeq (\$(HOST_OS)-\$(HOST_ARCH),linux-x86) 339 host_arch := x86 341 host_arch := unknown_arch 344 host_c_flags := \$(common_c_flags) \$(\$(host_arch)_c_flags) \$(local_c_flags) 346 host_src_files := \$(common_src_files) \$(\$(host_arch)_src_files) 347 host_src_files := \$(filter-out \$(\$(host_arch)_exclude_files), \$(host_src_files))
|
Crypto-config.mk | 687 ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86) 688 host_arch := x86 macro 690 host_arch := unknown_arch macro 693 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) 695 host_src_files := $(common_src_files) $($(host_arch)_src_files) 696 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files))
|
/external/scrypt/ |
Scrypt-config.mk | 93 ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86) 94 host_arch := x86 macro 96 host_arch := unknown_arch macro 99 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) 101 host_src_files := $(common_src_files) $($(host_arch)_src_files) 102 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files))
|
import_scrypt.sh | 336 ifeq (\$(HOST_OS)-\$(HOST_ARCH),linux-x86) 337 host_arch := x86 339 host_arch := unknown_arch 342 host_c_flags := \$(common_c_flags) \$(\$(host_arch)_c_flags) \$(local_c_flags) 344 host_src_files := \$(common_src_files) \$(\$(host_arch)_src_files) 345 host_src_files := \$(filter-out \$(\$(host_arch)_exclude_files), \$(host_src_files))
|
/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...] |