OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:host_arch
(Results
1 - 8
of
8
) sorted by null
/external/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/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
...]
Completed in 2040 milliseconds