HomeSort by relevance Sort by last modified time
    Searched full:arch (Results 651 - 675 of 2914) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 59 yasm_arch *arch; member in struct:nasm_listfmt_output_info
93 info->arch)) {
123 return yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
133 retval = yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
144 yasm_arch *arch)
159 info.arch = arch;
  /external/v8/test/mjsunit/
mjsunit.status 51 fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm || $arch == mips)
53 big-object-literal: PASS, SKIP if ($arch == arm)
59 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips)
79 [ $arch == arm ]
131 [ $arch == mips ]
  /external/v8/
SConstruct 141 'arch:ia32': {
146 'arch:arm': {
183 'arch:mips': {
229 'arch:x64': {
253 'arch:ia32': {
258 'arch:x64': {
330 'arch:arm': {
347 'arch:arm': {
353 'arch:mips': {
457 'arch:arm':
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 82 def GetToolchainNaClInclude(tcname, tcpath, arch):
83 if arch == 'x86':
87 elif arch == 'arm':
90 buildbot_common.ErrorExit('Unknown architecture: %s' % arch)
138 def GetPNaClNativeLib(tcpath, arch):
139 if arch not in ['arm', 'x86-32', 'x86-64']:
140 buildbot_common.ErrorExit('Unknown architecture %s.' % arch)
141 return os.path.join(tcpath, 'lib-' + arch)
201 def BuildStepUntarToolchains(pepperdir, arch, toolchains):
204 tcname = platform + '_' + arch
    [all...]
test_sdk.py 69 def RunTest(test, toolchain, arch, config):
70 args = ['TOOLCHAIN=%s' % toolchain, 'NACL_ARCH=%s' % arch]
78 # arch
93 for arch in archs:
95 RunTest(location, toolchain, arch, config)
  /external/valgrind/main/
Makefile.all.am 167 AM_FLAG_M3264_X86_DARWIN = -arch i386
168 AM_CFLAGS_X86_DARWIN = $(WERROR) -arch i386 $(AM_CFLAGS_BASE) \
172 AM_CCASFLAGS_X86_DARWIN = $(AM_CPPFLAGS_X86_DARWIN) -arch i386 -g
174 AM_FLAG_M3264_AMD64_DARWIN = -arch x86_64
175 AM_CFLAGS_AMD64_DARWIN = $(WERROR) -arch x86_64 $(AM_CFLAGS_BASE) \
177 AM_CCASFLAGS_AMD64_DARWIN = $(AM_CPPFLAGS_AMD64_DARWIN) -arch x86_64 -g
186 # build anything which is built only once on a dual-arch build.
210 PRELOAD_LDFLAGS_X86_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch i386
211 PRELOAD_LDFLAGS_AMD64_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch x86_64
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.c 50 ssprintf(ss, "\"arch\": \"x86_64\",\n");
52 ssprintf(ss, "\"arch\": \"x86_32\",\n");
54 ssprintf(ss, "\"arch\": \"arm\",\n");
56 ssprintf(ss, "\"arch\": \"mips\",\n");
58 #error Unknown ARCH
  /external/chromium_org/sandbox/linux/seccomp-bpf/
linux_seccomp.h 117 #define SECCOMP_ARCH_IDX (offsetof(struct arch_seccomp_data, arch))
144 #define SECCOMP_ARCH_IDX (offsetof(struct arch_seccomp_data, arch))
158 // See </arch/arm/include/asm/unistd.h> in the Linux kernel.
169 // See </arch/arm/include/asm/sigcontext.h> in the Linux kernel.
182 #define SECCOMP_ARCH_IDX (offsetof(struct arch_seccomp_data, arch))
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
ppc-xlate.pl 57 my $arch = shift;
59 { $arch =~ s/\"//g;
60 $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
62 ".machine $arch";
  /external/chromium_org/v8/
Makefile.android 49 ifeq ($(ARCH), android_arm)
54 ifeq ($(ARCH), android_mipsel)
59 ifeq ($(ARCH), android_ia32)
63 $(error Target architecture "${ARCH}" is not supported)
102 -S.${ARCH} ${GYPFLAGS}
Makefile.nacl 52 ifeq ($(ARCH), nacl_ia32)
59 ifeq ($(ARCH), nacl_x64)
66 $(error Target architecture "${ARCH}" is not supported)
  /external/compiler-rt/lib/
CMakeLists.txt 184 foreach(arch x86_64 i386)
185 if(CAN_TARGET_${arch})
186 add_compiler_rt_static_runtime(clang_rt.${arch} ${arch}
187 SOURCES ${${arch}_SOURCES}
  /external/eigen/test/eigen2/
testsuite.cmake 15 # <OS_name>-<OS_version>-<arch>-<compiler-version>
19 # <arch> = i386, x86_64, ia64, powerpc, etc.
37 # ARCH=`uname -m`
43 # COMMON="ctest -S $WORK_DIR/testsuite.cmake,EIGEN_WORK_DIR=$WORK_DIR,EIGEN_SITE=$SITE,EIGEN_MODE=$1,EIGEN_BUILD_STRING=$OS_VERSION-$ARCH"
101 # arch
  /external/openssl/crypto/perlasm/
ppc-xlate.pl 57 my $arch = shift;
59 { $arch =~ s/\"//g;
60 $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
62 ".machine $arch";
  /external/v8/tools/
grokdump.py 372 self.arch = None
379 # Find MDRawSystemInfo stream and determine arch.
384 self.arch = system_info.processor_architecture
385 assert self.arch in [MD_CPU_ARCHITECTURE_AMD64, MD_CPU_ARCHITECTURE_X86]
386 assert not self.arch is None
394 if self.arch == MD_CPU_ARCHITECTURE_X86:
397 elif self.arch == MD_CPU_ARCHITECTURE_AMD64:
438 if self.arch == MD_CPU_ARCHITECTURE_AMD64:
440 elif self.arch == MD_CPU_ARCHITECTURE_X86:
463 arch = Non
    [all...]
  /dalvik/vm/
JniInternal.h 66 * Note: Assembly code in arch/<arch>/Call<arch>.S relies on
  /development/ndk/platforms/android-3/arch-arm/include/asm/arch/
hardware.h 18 #include <asm/arch/cpu.h>
20 #include <asm/arch/io.h>
21 #include <asm/arch/serial.h>
  /external/chromium/sdch/open-vcdiff/packages/deb/
rules 86 binary-arch: build install
117 binary: binary-indep binary-arch
118 .PHONY: build clean binary-indep binary-arch binary install
  /external/chromium_org/base/test/expectations/
expectation.cc 117 std::string arch = base::SysInfo::OperatingSystemArchitecture(); local
118 if (arch == "x86")
120 else if (arch == "x86_64")
  /external/chromium_org/sdch/open-vcdiff/packages/deb/
rules 86 binary-arch: build install
117 binary: binary-indep binary-arch
118 .PHONY: build clean binary-indep binary-arch binary install
  /external/chromium_org/third_party/tcmalloc/vendor/packages/deb/
rules 86 binary-arch: build install
116 binary: binary-indep binary-arch
117 .PHONY: build clean binary-indep binary-arch binary install
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
listfmt.h 70 yasm_arch *arch);
101 * \param arch architecture
104 yasm_linemap *linemap, yasm_arch *arch);
  /external/kernel-headers/original/asm-arm/arch/
board.h 2 * linux/include/asm-arm/arch-omap/board.h
15 #include <asm/arch/gpio-switch.h>
129 /* See include/asm-arm/arch-omap/gpio-switch.h for definitions */
  /external/llvm/lib/Support/Unix/
Host.inc 42 // Normalize the arch, since the target triple may not actually match the target.
43 std::string Arch = ArchSplit.first;
45 std::string Triple(Arch);
  /external/open-vcdiff/packages/deb/
rules 86 binary-arch: build install
117 binary: binary-indep binary-arch
118 .PHONY: build clean binary-indep binary-arch binary install

Completed in 728 milliseconds

<<21222324252627282930>>