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

1 2 3 4

  /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 172 // Result is 0 on r6 architectures, 1 on other architecture revisions.
462 // Extract architecture from the "CPU Architecture" field.
468 char* architecture = cpu_info.ExtractField("CPU architecture"); local
469 if (architecture != NULL) {
471 architecture_ = strtol(architecture, &end, 10);
472 if (end == architecture) {
473 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
474 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());
166 device.cleanCodeCache(architecture, testLocation, programName);
211 * Fuzzer.checkForArchitectureSplit() will use this determine the architecture of the Executor.
213 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/webp/src/dsp/
cpu-features.c 256 char* architecture = NULL; local
258 /* Extract architecture from the "CPU Architecture" field.
266 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
287 * report an incorrect architecture number of 7!
302 D("CPU processor and architecture mismatch!!\n");
  /external/webrtc/webrtc/system_wrappers/source/android/
cpu-features.c 256 char* architecture = NULL; local
258 /* Extract architecture from the "CPU Architecture" field.
266 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
287 * report an incorrect architecture number of 7!
302 D("CPU processor and architecture mismatch!!\n");
  /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...]
  /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.25/bfd/
pef.h 30 unsigned long architecture; member in struct:bfd_pef_header
  /toolchain/binutils/binutils-2.25/include/opcode/
sparc.h 54 /* The highest architecture in the table. */
72 These are short's because sparc_opcode.architecture is. */
78 /* Given architecture name, look up it's sparc_opcode_arch_val value. */
104 short architecture; /* Bitmask of sparc_opcode_arch_val's. */ member in struct:sparc_opcode
  /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...]
  /prebuilts/ndk/r11/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)
481 // supported by ARMv8 CPUs, as mandated by the ARM Architecture Reference
580 * architecture.
585 long architecture = 0; local
586 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
588 architecture = strtol(cpuArch, NULL, 10);
591 if (architecture >= 8L) {
594 // device's CPU supports, compared to its reference architecture
596 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
    [all...]
  /prebuilts/ndk/r13/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)
482 // supported by ARMv8 CPUs, as mandated by the ARM Architecture Reference
581 * architecture.
586 long architecture = 0; local
587 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
589 architecture = strtol(cpuArch, NULL, 10);
592 if (architecture >= 8L) {
595 // device's CPU supports, compared to its reference architecture
597 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
    [all...]
  /toolchain/binutils/binutils-2.25/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. */
6089 int architecture; member in struct:save_opts
    [all...]
  /external/swiftshader/src/Reactor/
Nucleus.cpp 95 const char *architecture = "x86-64"; local
97 const char *architecture = "x86"; local
110 TargetMachine *targetMachine = EngineBuilder::selectTarget(module, architecture, "", MAttrs, Reloc::Default, CodeModel::JITDefault, &error);
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-opsworks/1.11.18/
aws-java-sdk-opsworks-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-ec2/1.11.18/
aws-java-sdk-ec2-1.11.18.jar 

Completed in 1329 milliseconds

1 2 3 4