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

  /external/chromium_org/third_party/libjingle/source/talk/base/
systeminfo_unittest.cc 58 talk_base::SystemInfo::Architecture architecture = info.GetCpuArchitecture(); local
61 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_X64, architecture);
64 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_ARM, architecture);
66 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_X86, architecture);
  /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/
cpu.cc 347 // Extract architecture from the "CPU Architecture" field.
353 char* architecture = cpu_info.ExtractField("CPU architecture"); local
354 if (architecture != NULL) {
356 architecture_ = strtol(architecture, &end, 10);
357 if (end == architecture) {
360 delete[] architecture;
363 // report an incorrect architecture number of 7!
371 // 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::internal::BASE_EMBEDDED
  /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/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/webrtc/test/testsupport/
fileutils.cc 28 #include "typedefs.h" // For architecture defines
128 std::string architecture = "64"; local
130 std::string architecture = "32"; local
136 architecture + "." + extension;
140 // Try without architecture.
146 resource_file = resources_path + name + "_" + architecture + "." + extension;
150 // 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
  /external/webp/src/dsp/
cpu-features.c 254 char* architecture = NULL; local
256 /* Extract architecture from the "CPU Architecture" field.
264 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
285 * report an incorrect architecture number of 7!
300 D("CPU processor and architecture mismatch!!\n");
  /external/webrtc/src/system_wrappers/source/android/
cpu-features.c 254 char* architecture = NULL; local
256 /* Extract architecture from the "CPU Architecture" field.
264 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
285 * report an incorrect architecture number of 7!
300 D("CPU processor and architecture mismatch!!\n");
  /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/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...]
  /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...]
  /ndk/sources/android/cpufeatures/
cpu-features.c 48 * NDK r5: Handle buggy kernels which report a CPU Architecture number of 7
52 * (VFPv3 is mandated by the ARM architecture is Neon is implemented)
445 // supported by ARMv8 CPUs, as mandated by the ARM Architecture Reference
532 * architecture.
537 long architecture = 0; local
538 char* cpuArch = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "CPU architecture");
540 architecture = strtol(cpuArch, NULL, 10);
543 if (architecture >= 8L) {
546 // device's CPU supports, compared to its reference architecture
548 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
    [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.
946 def architecture(self): member in class:Port
    [all...]

Completed in 744 milliseconds