HomeSort by relevance Sort by last modified time
    Searched defs:architecture (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/webrtc/webrtc/base/
systeminfo_unittest.cc 41 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/v8/src/base/
cpu.cc 175 // 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)
    [all...]
cpu.h 5 // 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
  /art/tools/dexfuzz/src/dexfuzz/executors/
Executor.java 39 protected Architecture architecture; field in class:Executor
44 protected Executor(String name, int timeout, BaseListener listener, Architecture architecture,
56 this.architecture = architecture;
104 commandBuilder.append("--instruction-set=").append(architecture.asString());
164 device.cleanCodeCache(architecture, testLocation, programName);
209 * Fuzzer.checkForArchitectureSplit() will use this determine the architecture of the Executor.
211 public Architecture getArchitecture()
    [all...]
  /external/google-breakpad/src/common/
module.h 180 // 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/
platform.py 46 # 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
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
NativeLibrary.java 37 * 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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1077 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1049 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /external/python/cpython2/Lib/
platform.py 49 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
79 # 0.3.2 - added architecture() API and support for it in platform()
1032 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1077 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1077 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1077 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 47 # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
77 # 0.3.2 - added architecture() API and support for it in platform()
1077 def architecture(executable=sys.executable,bits='',linkage=''): function
    [all...]
  /cts/tools/utils/
CollectAllTests.java 69 + "<java-package> <architecture> [expectation-dir [makefile-file]]");
102 String architecture = args[4]; local
103 if (architecture == null || architecture.equals("")) {
104 System.err.println("Invalid architecture");
247 addToTests(expectations, architecture, testCases, klass);
258 addToTests(expectations, architecture, testCases, klass);
396 String architecture,
427 addToTests(expectations, architecture, testCases, testClass, testName);
432 String architecture,
    [all...]
DescriptionGenerator.java 111 String architecture = null; local
118 architecture = option[1];
122 if (architecture == null || architecture.equals("")) {
123 Log.e("Missing architecture!", null);
145 xmlGenerator.addTestClass(new TestClass(clazz, ctsExpectationStore, architecture));
532 TestClass(ClassDoc clazz, ExpectationStore expectationStore, String architecture) {
534 mCases = getTestMethods(expectationStore, architecture, clazz);
544 String architecture, ClassDoc clazz) {
580 VogarUtils.extractSupportedAbis(architecture, expectation)
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
pef.h 30 unsigned long architecture; member in struct:bfd_pef_header
  /toolchain/binutils/binutils-2.27/include/opcode/
sparc.h 81 These are short's because sparc_opcode.architecture is. */
87 /* Given architecture name, look up it's sparc_opcode_arch_val value. */
113 short architecture; /* Bitmask of sparc_opcode_arch_val's. */ member in struct:sparc_opcode
  /external/devlib/devlib/
target.py 1392 def architecture(self): member in class:Cpuinfo
    [all...]
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 93 // 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 %s\n"
873 const char *architecture = ElfArchitecture<ElfClass>(elf_header); local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
op_level_cost_estimator.cc 329 const string architecture = device.environment().at("architecture"); local
331 if (architecture < "3") {
334 } else if (architecture < "4") {
337 } else if (architecture < "6") {
    [all...]
  /prebuilts/ndk/r16/sources/android/cpufeatures/
cpu-features.c 50 * NDK r5: Handle buggy kernels which report a CPU Architecture number of 7
54 * (VFPv3 is mandated by the ARM architecture is Neon is implemented)
483 // supported by ARMv8 CPUs, as mandated by the ARM Architecture Reference
582 * architecture.
587 long architecture = 0; local
588 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
590 architecture = strtol(cpuArch, NULL, 10);
593 if (architecture >= 8L) {
596 // device's CPU supports, compared to its reference architecture
598 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-i960.c 389 /* Architecture for which we are assembling. */
390 #define ARCH_ANY 0 /* Default: no architecture checking done. */
397 int architecture = ARCH_ANY; /* Architecture requested on invocation line. */ variable
668 Return TRUE iff the target architecture supports the specified
674 switch (architecture)
752 as_bad (_("no such sfr in this architecture"));
    [all...]
tc-m68k.c 513 unsigned long arch; /* Architecture features. */
531 /* Architecture models. */
554 /* Architecture extensions, here 'alias' -1 for m68k, +1 for cf and 0
752 architecture and we have a lot of relaxation modes. */
6085 int architecture; member in struct:save_opts
    [all...]
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp 198 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);
    [all...]

Completed in 1568 milliseconds

1 2 3 4 5