Searched refs:architecture (Results 1 - 25 of 102) sorted by relevance

12345

/external/v8/src/
H A Dsimulator.h40 #error Unsupported target architecture.
H A Dcodegen.h35 // Include the declaration of the architecture defined class CodeGenerator.
81 #error Unsupported target architecture.
H A Dglobals.h65 // Processor architecture detection. For more info on what's defined, see:
90 #error Host architecture was not detected as supported by v8
93 // Target architecture detection. This may be set externally. If not, detect
94 // in the same way as the host architecture, that is, target the native
107 #error Target architecture was not detected as supported by v8
113 #error Target architecture ia32 is only supported on ia32 host
116 #error Target architecture x64 is only supported on x64 host
120 #error Target architecture arm is only supported on arm and ia32 host
124 #error Target architecture mips is only supported on mips and ia32 host
151 #error Target architecture i
[all...]
H A Dmacro-assembler.h69 #error Unsupported target architecture.
/external/webkit/Tools/Scripts/
H A Dset-webkit-configuration37 --32-bit Set the default architecture to 32-bit
38 --64-bit Set the default architecture to 64-bit
44 my $architecture = passedArchitecture();
46 if (!$architecture) {
52 $architecture = 'x86_64';
57 if (!$configuration && !$architecture) {
71 if ($architecture) {
72 if ($architecture ne "x86_64") {
74 print ARCHITECTURE $architecture;
H A Dgdb-safari52 my @architectureFlags = ("-arch", architecture()) if !isTiger();
H A Dwebkitdirs.pm53 my $architecture;
217 return if defined $architecture;
218 # make sure $architecture is defined for non-apple-mac builds
219 $architecture = "";
224 $architecture = <ARCHITECTURE>;
227 if ($architecture) {
228 chomp $architecture;
231 $architecture = `arch`;
235 $architecture = $supports64Bit ? 'x86_64' : `arch`;
237 chomp $architecture;
520 sub architecture() subroutine
[all...]
H A Drun-api-tests148 if (architecture()) {
149 $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), $apiTesterPath, $test, @ARGV) or die "Failed to run test: $test.";
201 if (architecture()) {
202 $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), $apiTesterPath, "--dump-tests") or die "Failed to build list of tests!";
/external/qemu/android/config/windows/
H A Dconfig-host.h10 #error Unknown architecture for codegen
/external/qemu/android/config/darwin-x86/
H A Dconfig-host.h10 #error Unknown architecture for codegen
/external/qemu/android/config/freebsd-x86/
H A Dconfig-host.h10 #error Unknown architecture for codegen
/external/qemu/android/config/linux-x86/
H A Dconfig-host.h10 #error Unknown architecture for codegen
/external/webkit/Source/WebCore/platform/win/
H A DSystemInfo.cpp142 static WORD architecture = PROCESSOR_ARCHITECTURE_INTEL; local
148 return architecture;
155 architecture = systemInfo.wProcessorArchitecture;
159 return architecture;
/external/libffi/
H A DLibffi.mk15 # The libffi code is organized primarily by architecture, but at some
19 # right set of source files for the OS and architecture.
42 $(info The os/architecture $(ffi_os)-$(ffi_arch) is not supported by libffi.)
43 LOCAL_SRC_FILES := your-architecture-not-supported-by-ffi-makefile.c
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dchromium_linux_unittest.py54 self.assertEquals(port.architecture(), expected_architecture)
85 self.assertEquals(port.architecture(), 'x86')
87 # Test that we default to 'x86' on an unknown architecture.
93 self.assertEquals(port.architecture(), 'x86')
H A Dgoogle_chrome.py67 def architecture(self): member in class:GetGoogleChromePort.GoogleChromeLinux32Port
86 def architecture(self): member in class:GetGoogleChromePort.GoogleChromeLinux64Port
/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/llvm/device/include/llvm/Config/
H A Dconfig.h501 /* LLVM architecture name for the native architecture, if available */
509 # error Unsupported target architecture for LLVM_NATIVE_ARCH
512 /* Short LLVM architecture name for the native architecture, if available */
520 # error Unsupported target architecture for LLVM_NATIVE_ARCHNAME
/external/compiler-rt/make/platform/
H A Ddarwin_fat.mk17 # Arch - The target architecture; this must match the compiler-rt name for the
18 # architecture and is used to find the appropriate function
22 # Arch.<Config Name> - Set the target architecture on a per-config basis.
/external/chromium/sdch/open-vcdiff/packages/deb/
H A Drules15 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
81 # Build architecture-independent files here.
85 # Build architecture-dependent files here.
/external/chromium/base/win/
H A Dwindows_version.h45 // The processor architecture this copy of Windows natively uses. For
74 WindowsArchitecture architecture() const { return architecture_; } function in class:base::win::OSInfo
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DProcessLauncher.h58 cpu_type_t architecture; member in struct:WebKit::ProcessLauncher::LaunchOptions
/external/webrtc/src/
H A Dtypedefs.h54 // Processor architecture detection. For more info on what's defined, see:
80 #error Please add support for your architecture in typedefs.h
/external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
H A DProcessLauncherMac.mm235 // Determine the architecture to use.
236 cpu_type_t architecture = m_launchOptions.architecture;
237 if (architecture == LaunchOptions::MatchCurrentArchitecture)
238 architecture = _NSGetMachExecuteHeader()->cputype;
240 cpu_type_t cpuTypes[] = { architecture };
/external/chromium/build/
H A Dbuild_config.h103 // Processor architecture detection. For more info on what's defined, see:
121 #error Please add support for your architecture in build/build_config.h

Completed in 445 milliseconds

12345