HomeSort by relevance Sort by last modified time
    Searched full:arch (Results 151 - 175 of 9462) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/compiler-rt/lib/tsan/tests/
CMakeLists.txt 19 # tsan_compile(obj_list, source, arch, {headers})
20 macro(tsan_compile obj_list source arch)
22 set(output_obj "${basename}.${arch}.o")
23 get_target_flags_for_arch(${arch} TARGET_CFLAGS)
42 get_target_flags_for_arch(${arch} TARGET_LINK_FLAGS)
  /external/llvm/test/MC/Mips/
cpload.s 1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 | FileCheck %s -check-prefix=ASM
3 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 -filetype=obj -o -| \
4 # RUN: llvm-objdump -d -r -arch=mips - | \
7 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64r2 -filetype=obj -o -| \
8 # RUN: llvm-objdump -d -r -arch=mips - | \
  /bionic/libc/kernel/tools/
generate_uapi_headers.sh 177 for arch in "${ARCH_LIST[@]}"; do
178 echo "Generating headers for arch ${arch}"
179 make ARCH=${arch} headers_install
194 for arch in "${ARCH_LIST[@]}"; do
195 # Copy arch headers.
196 copy_hdrs "${KERNEL_DIR}/${src_dir}/arch/${arch}/include/uapi" \
197 "${ANDROID_KERNEL_DIR}/uapi/asm-${arch}"
    [all...]
  /external/chromium_org/third_party/binutils/
download.py 45 arch = gyp_host_arch.group(1)
47 if arch == 'x86_64':
49 return arch
54 def FetchAndExtract(arch):
55 archdir = os.path.join(BINUTILS_DIR, 'Linux_' + arch)
61 print "WARNING: No binutils found for your architecture (%s)!" % arch
104 arch = GetArch()
105 if arch == 'x64':
106 return FetchAndExtract(arch)
107 if arch == 'ia32'
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/genperf/
run.bat 15 call %_python_% modules\arch\x86\gen_x86_insn.py
21 %1 modules\arch\x86\x86cpu.gperf x86cpu.c
22 %1 modules\arch\x86\x86regtmod.gperf x86regtmod.c
  /external/clang/test/Driver/
arm-arch-darwin.c 1 // On Darwin, arch should override CPU for triple purposes
2 // RUN: %clang -target armv7m-apple-darwin -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V7M-DARWIN %s
4 // RUN: %clang -target armv7m -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V7M-OVERRIDDEN %s
arc-exceptions.m 1 // RUN: %clang -### -x objective-c -arch x86_64 -fobjc-arc -fsyntax-only %s 2> %t.log
4 // RUN: %clang -### -x objective-c++ -arch x86_64 -fobjc-arc -fsyntax-only %s 2> %t.log
default-toolchain.c 4 // RUN: %clang -target i386-apple-darwin9 -arch ppc -m64 -v 2> %t
7 // RUN: %clang -target i386-apple-darwin9 -arch ppc64 -m32 -v 2> %t
  /external/libunwind/include/
libunwind.h.in 2 when multiple different arch releases are installed simultaneously. */
27 # error "Unsupported arch"
32 # include "libunwind-@arch@.h"
  /external/libunwind/include/tdep/
libunwind_i.h.in 2 when multiple different arch releases are installed simultaneously. */
27 # error "Unsupported arch"
33 # include "tdep-@arch@/libunwind_i.h"
  /external/valgrind/main/none/tests/
allexec_prepare_prereq 4 # On 'single arch' compiled Valgrind, allexec32 and allexec64 will point
6 # On 'bi-arch', they will point respectively to the executable compiled
7 # for the revelant arch.
  /external/strace/
configure.ac 19 arch=bfin
23 arch=i386
27 arch=ia64
31 arch=m68k
35 arch=sparc64
39 arch=sparc
43 arch=metag
47 arch=mips
51 arch=alpha
55 arch=powerp
    [all...]
  /bionic/linker/
Android.mk 14 LOCAL_SRC_FILES_arm := arch/arm/begin.S
15 LOCAL_SRC_FILES_arm64 := arch/arm64/begin.S
16 LOCAL_SRC_FILES_x86 := arch/x86/begin.c
17 LOCAL_SRC_FILES_x86_64 := arch/x86_64/begin.S
18 LOCAL_SRC_FILES_mips := arch/mips/begin.S
19 LOCAL_SRC_FILES_mips64 := arch/mips64/begin.S
  /build/core/
executable.mk 34 # check if preferred arch is supported
37 # first arch is supported
44 # check if preferred arch was not supported or asked to build both
48 # check if the non-preferred arch is the primary or secondary
55 # check if non-preferred arch is supported
58 # non-preferred arch is supported
  /bionic/libc/tools/
check-symbols.py 11 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain) variable
13 sys.stderr.write('Checking symbols for arch "%s"...\n' % arch)
17 if library == 'libm' and arch == 'arm':
19 path = '%s/development/ndk/platforms/android-%s/arch-%s/symbols/%s.so.%s.txt' % (os.environ['ANDROID_BUILD_TOP'], api, arch, library, functions_or_variables)
23 #sys.stdout.write('%d %s in %s for %s\n' % (len(symbols), functions_or_variables, library, arch))
53 sys.stderr.write('%d missing %s in %s for %s:\n' % (len(missing), functions_or_variables, library, arch))
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
lc3barch.c 41 yasm_arch_base *arch; local
55 arch = yasm_xmalloc(sizeof(yasm_arch_base));
56 arch->module = &yasm_lc3b_LTX_arch;
57 return (yasm_arch *)arch;
61 lc3b_destroy(/*@only@*/ yasm_arch *arch)
63 yasm_xfree(arch);
67 lc3b_get_machine(/*@unused@*/ const yasm_arch *arch)
73 lc3b_get_address_size(/*@unused@*/ const yasm_arch *arch)
79 lc3b_set_var(yasm_arch *arch, const char *var, unsigned long val)
85 lc3b_get_fill(const yasm_arch *arch)
    [all...]
  /external/chromium_org/tools/gyp/test/mac/archs/
test-valid-archs.gyp 13 'ARCHS': ['i386', 'x86_64', 'unknown-arch'],
24 'ARCHS': ['i386', 'x86_64', 'unknown-arch'],
  /external/fio/
helpers.c 9 #include "arch/arch.h"
  /external/llvm/test/MC/Sparc/
sparc-directives.s 1 ! RUN: llvm-mc %s -arch=sparc -show-encoding | FileCheck %s --check-prefix=SPARC32
2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64
  /external/ltrace/sysdeps/linux-gnu/
README 0 * "arch/syscallent.h" is made from <asm/unistd.h>.
5 * "arch/signalent.h" is made from <asm/signal.h>.
  /external/ltrace/sysdeps/linux-gnu/mips/
plt.c 74 debug(1,"plt_addr %zx ndx %#zx",lte->arch.pltgot_addr, ndx);
82 return lte->arch.pltgot_addr +
83 sizeof(void *) * (lte->arch.mips_local_gotno
84 + (ndx - lte->arch.mips_gotsym));
110 if (sym->arch.pltalways
111 || (!sym->arch.gotonly && sym->plt_type == LS_TOPLT_NONE)) {
165 sym_index += lte->arch.mips_gotsym;
228 lte->arch.pltgot_addr = dyn.d_un.d_ptr;
231 lte->arch.mips_local_gotno = dyn.d_un.d_val;
234 lte->arch.mips_gotsym = dyn.d_un.d_val
    [all...]
  /external/chromium_org/v8/tools/gyp/
mksnapshot.host.darwin-arm.mk 6 LOCAL_MODULE := v8_tools_gyp_mksnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp
17 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
18 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
19 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
20 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
21 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host (…)
    [all...]
mksnapshot.host.darwin-arm64.mk 6 LOCAL_MODULE := v8_tools_gyp_mksnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp
17 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
18 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
19 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
20 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
21 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host (…)
    [all...]
mksnapshot.host.darwin-mips.mk 6 LOCAL_MODULE := v8_tools_gyp_mksnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp
17 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
18 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
19 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
20 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
21 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host (…)
    [all...]
mksnapshot.host.darwin-x86.mk 6 LOCAL_MODULE := v8_tools_gyp_mksnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp
17 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_base_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
18 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_nosnapshot_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
19 $(call intermediates-dir-for,STATIC_LIBRARIES,v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/v8_tools_gyp_v8_libbase_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
20 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icui18n_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp.a \
21 $(call intermediates-dir-for,STATIC_LIBRARIES,third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp,true,,$(GYP_HOST_VAR_PREFIX))/third_party_icu_icuuc_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host (…)
    [all...]

Completed in 627 milliseconds

1 2 3 4 5 67 8 91011>>