Searched defs:architecture (Results 1 - 14 of 14) sorted by last modified time

/external/webrtc/src/modules/audio_processing/test/testsupport/
H A Dfileutils.cc28 #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/webrtc/src/system_wrappers/source/android/
H A Dcpu-features.c254 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/test/testsupport/
H A Dfileutils.cc28 #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/webp/src/dsp/
H A Dcpu-features.c254 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/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c50 * (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 Android
/external/chromium_org/v8/src/base/
H A Dcpu.cc373 // 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.
450 // The earliest architecture wit
[all...]
H A Dcpu.h5 // 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
/external/chromium_org/third_party/webrtc/test/testsupport/
H A Dfileutils.cc39 #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/third_party/webrtc/base/
H A Dsysteminfo_unittest.cc41 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/third_party/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c50 * (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 Android
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dwebkitdirs.pm78 my $architecture;
292 return if defined $architecture;
293 # make sure $architecture is defined in all cases
294 $architecture = "";
304 $architecture = $1;
308 $architecture = <ARCHITECTURE>;
311 if ($architecture) {
312 chomp $architecture;
317 $architecture = 'x86_64' if $supports64Bit;
319 $architecture
654 sub architecture() subroutine
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dbase.py108 # FIXME: Technically this should be 'arm', but adding a third architecture type breaks TestConfigurationConverter.
969 def architecture(self): member in class:Port
1224 for version, architecture in self.ALL_SYSTEMS:
1226 test_configurations.append(TestConfiguration(version, architecture, build_type))
/external/chromium_org/base/
H A Dcpu.cc109 unsigned implementer = 0, architecture = 0, variant = 0, part = 0, local
116 {"CPU architecture", &architecture},
171 architecture == 7 &&
/external/chromium_org/base/win/
H A Dwindows_version.h59 // The processor architecture this copy of Windows natively uses. For
89 WindowsArchitecture architecture() const { return architecture_; } function in class:base::win::OSInfo

Completed in 616 milliseconds