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

  /external/grpc-grpc/src/ruby/tools/
platform_check.rb 31 def PLATFORM.architecture singleton method in class:PLATFORM
  /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 174 // Result is 0 on r6 architectures, 1 on other architecture revisions.
461 // Extract architecture from the "CPU Architecture" field.
467 char* architecture = cpu_info.ExtractField("CPU architecture"); local
468 if (architecture != nullptr) {
470 architecture_ = strtol(architecture, &end, 10);
471 if (end == architecture) {
472 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
473 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()
824 ### Information about the used architecture
826 # Default values for architecture; non-empty strings override the
834 def architecture(executable=sys.executable, bits='', linkage=''): function
837 binary) for various architecture information.
840 the bit architecture and the linkage format used for the
    [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()
1062 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...]
  /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 415 const string architecture = device.environment().at("architecture"); local
417 if (architecture < "3") {
420 } else if (architecture < "4") {
423 } else if (architecture < "6") {
    [all...]

Completed in 1003 milliseconds