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

  /external/chromium_org/third_party/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/chromium_org/v8/src/base/
cpu.cc 373 // Extract architecture from the "CPU Architecture" field.
379 char* architecture = cpu_info.ExtractField("CPU architecture"); local
380 if (architecture != NULL) {
382 architecture_ = strtol(architecture, &end, 10);
383 if (end == architecture) {
386 delete[] architecture;
389 // report an incorrect architecture number of 7!
397 // ARMv6 device that reports architecture 7
    [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.
26 // This class also has static methods for the architecture specific functions.
28 // architectures. For each architecture the file cpu_<arch>.cc contains the
49 int architecture() const { return architecture_; } function in class:v8::base::FINAL
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 41 + " [-b UNSUPPORTED_ABI_FILE] [-a ARCHITECTURE] [-o OUTPUT_FILE]"
52 String architecture = null; local
80 architecture = getArg(args, ++i, "Missing value for architecture");
130 XmlGenerator generator = new XmlGenerator(failuresStore, abiStore, architecture,
  /external/chromium_org/base/
cpu.cc 109 unsigned implementer = 0, architecture = 0, variant = 0, part = 0, local
116 {"CPU architecture", &architecture},
171 architecture == 7 &&
  /external/chromium_org/third_party/webrtc/test/testsupport/
fileutils.cc 39 #include "webrtc/typedefs.h" // For architecture defines
224 std::string architecture = "64"; local
226 std::string architecture = "32"; local
232 architecture + "." + extension;
236 // Try without architecture.
242 resource_file = resources_path + name + "_" + architecture + "." + extension;
247 // Fall back on name without architecture or platform.
  /external/chromium_org/base/win/
windows_version.h 59 // The processor architecture this copy of Windows natively uses. For
89 WindowsArchitecture architecture() const { return architecture_; } function in class:base::win::OSInfo
  /cts/tools/utils/
CollectAllTests.java 68 + "<java-package> <architecture> [expectation-dir [makefile-file]]");
91 String architecture = args[4]; local
92 if (architecture == null || architecture.equals("")) {
93 System.err.println("Invalid architecture");
218 addToTests(expectations, architecture, testCases, klass);
229 addToTests(expectations, architecture, testCases, klass);
367 String architecture,
398 addToTests(expectations, architecture, testCases, testClass, testName);
403 String architecture,
    [all...]
DescriptionGenerator.java 110 String architecture = null; local
117 architecture = option[1];
121 if (architecture == null || architecture.equals("")) {
122 Log.e("Missing architecture!", null);
144 xmlGenerator.addTestClass(new TestClass(clazz, ctsExpectationStore, architecture));
527 TestClass(ClassDoc clazz, ExpectationStore expectationStore, String architecture) {
529 mCases = getTestMethods(expectationStore, architecture, clazz);
539 String architecture, ClassDoc clazz) {
575 VogarUtils.extractSupportedAbis(architecture, expectation)
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 46 * NDK r5: Handle buggy kernels which report a CPU Architecture number of 7
50 * (VFPv3 is mandated by the ARM architecture is Neon is implemented)
538 char* architecture = NULL; local
540 /* Extract architecture from the "CPU Architecture" field.
548 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
569 * report an incorrect architecture number of 7!
584 D("CPU processor and architecture mismatch!!\n");
745 * Technical note: Making sense of ARM's FPU architecture versions.
747 * FPA was ARM's first attempt at an FPU architecture. There is no Androi
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm 78 my $architecture;
292 return if defined $architecture;
293 # make sure $architecture is defined in all cases
294 $architecture = "";
304 $architecture = $1;
307 if (open ARCHITECTURE, "$baseProductDir/Architecture") {
308 $architecture = <ARCHITECTURE>;
309 close ARCHITECTURE;
654 sub architecture() subroutine
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 108 # FIXME: Technically this should be 'arm', but adding a third architecture type breaks TestConfigurationConverter.
969 def architecture(self): member in class:Port
    [all...]

Completed in 753 milliseconds