Searched defs:architecture (Results 1 - 12 of 12) sorted by relevance

/external/webrtc/webrtc/base/
H A Dsysteminfo_unittest.cc41 rtc::SystemInfo::Architecture architecture = info.GetCpuArchitecture(); local
44 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_X64, architecture);
47 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_ARM, architecture);
49 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_X86, architecture);
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DNativeLibrary.java37 * and failing that, it tries to find the OS and architecture specific version of the library in the
78 "Cannot find TensorFlow native library for OS: %s, architecture: %s. See "
83 os(), architecture()));
171 private static String architecture() { method in class:NativeLibrary
183 return "org/tensorflow/native/" + String.format("%s-%s/", os(), architecture()) + baseName;
/external/v8/src/base/
H A Dcpu.cc175 // Result is 0 on r6 architectures, 1 on other architecture revisions.
465 // Extract architecture from the "CPU Architecture" field.
471 char* architecture = cpu_info.ExtractField("CPU architecture"); local
472 if (architecture != NULL) {
474 architecture_ = strtol(architecture, &end, 10);
475 if (end == architecture) {
476 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
477 if (strcmp(architecture, "AArch64") == 0) {
483 delete[] architecture;
[all...]
H A Dcpu.h5 // This module contains the architecture-specific code. This make the rest of
7 // architecture.
9 // implementation for a particular architecture is put in cpu_<arch>.cc.
10 // The build system then uses the implementation for the target architecture.
27 // This class also has static methods for the architecture specific functions.
29 // architectures. For each architecture the file cpu_<arch>.cc contains the
50 int architecture() const { return architecture_; } function in class:v8::base::final
/external/google-breakpad/src/common/
H A Dmodule.cc52 const string &architecture, const string &id) :
55 architecture_(architecture),
51 Module(const string &name, const string &os, const string &architecture, const string &id) argument
H A Dmodule.h180 // architecture, and ID string.
181 Module(const string &name, const string &os, const string &architecture,
282 string architecture() const { return architecture_; } function in class:google_breakpad::Module
/external/python/cpython3/Lib/
H A Dplatform.py46 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
76 # 0.3.2 - added architecture() API and support for it in platform()
791 ### Information about the used architecture
793 # Default values for architecture; non-empty strings override the
801 def architecture(executable=sys.executable, bits='', linkage=''): function
804 binary) for various architecture information.
807 the bit architecture and the linkage format used for the
938 # WOW64 processes mask the native architecture
1386 bits, linkage = architecture(sys.executable)
/external/python/cpython2/Lib/
H A Dplatform.py49 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
79 # 0.3.2 - added architecture() API and support for it in platform()
1020 ### Information about the used architecture
1022 # Default values for architecture; non-empty strings override the
1032 def architecture(executable=sys.executable,bits='',linkage=''): function
1035 binary) for various architecture information.
1038 the bit architecture and the linkage format used for the
1169 # WOW64 processes mask the native architecture
1604 bits,linkage = architecture(sys.executable)
/external/google-breakpad/src/common/linux/
H A Ddump_symbols.cc93 // Define AARCH64 ELF architecture if host machine does not include this define.
186 // address size of the architecture whose code they're describing, and
287 // machine architecture given in HEADER, indexed by the register
289 // success, or false if HEADER's machine architecture is not
326 // architecture.
329 fprintf(stderr, "%s: unrecognized ELF machine architecture '%d';"
773 // Return the breakpad symbol file identifier for the architecture of
832 fprintf(stderr, "%s: unrecognized ELF machine architecture: %d\n",
837 fprintf(stderr, "%s with ELF machine architecture %s does not match "
838 "%s with ELF architecture
873 const char *architecture = ElfArchitecture<ElfClass>(elf_header); local
[all...]
/external/tensorflow/tensorflow/core/grappler/costs/
H A Dop_level_cost_estimator.cc329 const string architecture = device.environment().at("architecture"); local
331 if (architecture < "3") {
334 } else if (architecture < "4") {
337 } else if (architecture < "6") {
/external/devlib/devlib/
H A Dtarget.py1392 def architecture(self): member in class:Cpuinfo
1394 if 'CPU architecture' in section:
1395 return section['CPU architecture']
1396 if 'architecture' in section:
1397 return section['architecture']
/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp198 const char *architecture = "x86-64"; local
200 const char *architecture = "x86"; local
213 llvm::TargetMachine *targetMachine = llvm::EngineBuilder::selectTarget(::module, architecture, "", MAttrs, llvm::Reloc::Default, llvm::CodeModel::JITDefault, &error);

Completed in 2994 milliseconds