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

<<41424344454647484950>>

  /external/open-vcdiff/
INSTALL 129 "universal" binaries--by specifying multiple `-arch' options to the
130 compiler but only a single `-arch' option to the preprocessor. Like
133 ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
134 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64"
    [all...]
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 264 struct fat_arch arch; local
281 arch.cputype = ntohl(arch_be->cputype);
282 arch.cpusubtype = ntohl(arch_be->cpusubtype);
283 arch.offset = ntohl(arch_be->offset);
284 arch.size = ntohl(arch_be->size);
285 if (arch.cputype == cputype) {
286 if (ii->img_szB < arch.offset + arch.size)
288 ii->macho_img = ii->img + arch.offset;
289 ii->macho_img_szB = arch.size
    [all...]
  /ndk/build/tools/
build-mingw64-toolchain.sh 24 # build-mingw64-toolchain.sh --target-arch=i686 \
108 ARCH=$(uname -m)
109 case $ARCH in
110 i?86) ARCH=i686;;
111 amd64) ARCH=x86_64;;
173 --target-arch=*) TARGET_ARCH=$optarg;;
211 echo " --target-arch=<arch> Select default target architecture [$TARGET_ARCH]."
283 log "Target arch: $TARGET_TAG"
322 log "Host arch: $HOST_TAG
    [all...]
build-gdbserver.sh 229 DEST=$ANDROID_NDK_ROOT/prebuilt/android-$ARCH/gdbserver
238 ARCHIVE=$ARCH-gdbserver.tar.bz2
240 pack_archive "$PACKAGE_DIR/$ARCHIVE" "$ANDROID_NDK_ROOT" "prebuilt/android-$ARCH/gdbserver/$DSTFILE"
  /ndk/docs/text/
STANDALONE-TOOLCHAIN.text 38 SYSROOT=$NDK/platforms/android-<level>/arch-<arch>/
40 Where <level> is the API level number, and <arch> is the architecture
44 SYSROOT=$NDK/platforms/android-8/arch-arm
81 copy of the android-5/arch-arm sysroot, and of the toolchain binaries.
84 Use the '--arch=x86' option to specify the x86 GCC 4.6, or add '--arch=mips' option
90 --toolchain=mipsel-linux-android-4.6 # select MIPS GCC 4.6 compiler, same as --arch=mips
95 --toolchain=arm-linux-androideabi-clang3.3 # same as --arch=arm --llvm-version=3.3
187 the official Android 'armeabi' ABI (see docs/CPU-ARCH-ABIS.html) by default
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedAddEntryTask.java 90 * Releases - comma or space-separated list of releases in quints of os,ws,arch,type/name,filename,...
92 * - (for examples and definitions of ws, os + arch, see below)
98 * JUnitTestResults - comma or space-separated list of test results in quads of os,ws,arch,status,os,ws,status,arch,... - eg., win32,win,x86,PASS,linux,gtk,x86,PASS
99 * performanceTestResults - comma or space-separated list of test results in quads of os,ws,arch,status,os,ws,status,arch,... - eg., win32,win,x86_64,PASS,linux,gtk,x86_64,PASS
100 * APITestResults - comma or space-separated list of test results in quads of os,ws,arch,status,os,ws,status,arch,... - eg., win32,win,ppc,PASS,linux,gtk,ppc,PASS
103 * arch - architecture, eg., ALL, x86, x86_64, ppc, ...
412 release.setAttribute("arch", releases[i+2]); //$NON-NLS-1
    [all...]
  /build/
envsetup.sh 127 local ARCH=$(get_build_var TARGET_ARCH)
128 case $ARCH in
136 echo "Can't find toolchain for unknown architecture: $ARCH"
145 case $ARCH in
218 local arch=$(gettargetarch)
223 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
225 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
543 local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
547 if [ $(echo $arch | wc -w) -gt 1 ]; then
548 echo "tapas: Error: Multiple build archs supplied: $arch"
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parse.c 617 return yasm_bc_create_data(&dvs, 1, (int)withzero, p_object->arch,
627 return yasm_bc_create_data(&dvs, size, 0, p_object->arch, cur_line);
656 bc = yasm_bc_create_data(&dvs, 1, 0, p_object->arch, cur_line);
680 bc = yasm_bc_create_data(&dvs, 1, 0, p_object->arch, cur_line);
940 (p_object->arch, ID_val, ID_len, cur_line, &bc, &prefix)) {
945 /* Propagate errors in case we got a warning from the arch */
977 /* Propagate errors in case we got a warning from the arch */
984 bc = yasm_arch_create_empty_insn(p_object->arch, cur_line);
992 switch (yasm_arch_parse_check_regtmod(p_object->arch, ID_val, ID_len,
999 bc = yasm_arch_create_empty_insn(p_object->arch, cur_line)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/
configure.in 422 case $ARCH in
729 case $ARCH in
    [all...]
  /build/core/combo/
TARGET_linux-arm.mk 20 # You can set TARGET_ARCH_VARIANT to use an arch version other
22 # $(BUILD_COMBOS)/arch/<name>.mk which must contain
24 # defines in build/core/combo/include/arch/<combo>/AndroidConfig.h. Their
43 TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT).mk
207 KERNEL_HEADERS_ARCH := $(libc_root)/kernel/arch-$(TARGET_ARCH)
212 $(libc_root)/arch-arm/include \
  /external/chromium_org/third_party/android_platform/development/scripts/
symbol.py 32 ARCH = "arm"
52 if ARCH == "arm":
81 if ARCH == "arm":
85 elif ARCH =="x86":
290 global ARCH
292 if ARCH == "arm":
  /external/clang/lib/Driver/
ToolChain.cpp 46 // In universal driver terms, the arch name accepted by -arch isn't exactly
160 // For Darwin targets, the -arch option (which is translated to a
172 // Otherwise, if we have -march= choose the base CPU for that arch.
175 // Otherwise, use the Arch from the triple.
209 /// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-linux.c 252 setup_child( &ctst->arch, &ptst->arch, True );
256 ctst->arch.vex.guest_EAX = 0;
259 ctst->arch.vex.guest_ESP = esp;
316 ptst->arch.vex.guest_ESP,
317 ctst->arch.vex.guest_FS, ctst->arch.vex.guest_GS);
340 VG_(cleanup_thread)(&ctst->arch);
552 ldt = (Char*)(VG_(threads)[tid].arch.vex.guest_LDT);
586 ldt = (VexGuestX86SegDescr*)VG_(threads)[tid].arch.vex.guest_LDT
    [all...]
  /bionic/libc/kernel/arch-arm/asm/arch/
hardware.h 25 #include <asm/arch/cpu.h>
27 #include <asm/arch/io.h>
29 #include <asm/arch/serial.h>
  /dalvik/vm/hprof/
HprofOutput.cpp 254 //xxx also, don't do this bytewise if aligned and on a matching-endian arch
279 //xxx also, don't do this bytewise if aligned and on a matching-endian arch
304 //xxx also, don't do this bytewise if aligned and on a matching-endian arch
  /external/chromium_org/native_client_sdk/src/build_tools/
nacl-mono-buildbot.py 28 '--arch', 'x86-32', '--install-dir', install_dir] +
31 '--arch', 'x86-64', '--install-dir', install_dir] +
34 '--arch', 'arm', '--install-dir', install_dir] +
  /external/chromium_org/native_client_sdk/src/tools/
nacl_llvm.mk 102 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch x86-32 $$^ -o $$@)
105 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch x86-64 $$^ -o $$@)
108 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch arm $$^ -o $$@)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86regtmod.gperf 33 #include "modules/arch/x86/x86arch.h"
257 yasm_x86__parse_check_regtmod(yasm_arch *arch, const char *id, size_t id_len,
260 yasm_arch_x86 *arch_x86 = (yasm_arch_x86 *)arch;
  /external/kernel-headers/original/linux/
bitmap.h 17 * specific are in various include/asm-<arch>/bitops.h headers
18 * and other arch/<arch> specific files.
  /external/llvm/lib/Support/
Triple.cpp 317 Arch(parseArch(getArchName())),
331 Arch(parseArch(ArchStr.str())),
346 Arch(parseArch(ArchStr.str())),
360 // component movement when a component parses as (eg) both a valid arch and a
362 ArchType Arch = UnknownArch;
364 Arch = parseArch(Components[0]);
378 Found[0] = Arch != UnknownArch;
401 Arch = parseArch(Comp);
402 Valid = Arch != UnknownArch;
474 // Special case logic goes here. At this point Arch, Vendor and OS have th
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 583 ThreadArchState* arch = &VG_(threads)[1].arch; local
592 LibVEX_GuestX86_initialise(&arch->vex);
595 VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestX86State));
596 VG_(memset)(&arch->vex_shadow2, 0, sizeof(VexGuestX86State));
599 arch->vex.guest_ESP = iifii.initial_client_SP;
600 arch->vex.guest_EIP = iifii.initial_client_IP;
607 LibVEX_GuestAMD64_initialise(&arch->vex);
610 VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestAMD64State));
611 VG_(memset)(&arch->vex_shadow2, 0, sizeof(VexGuestAMD64State))
    [all...]
  /art/compiler/utils/mips/
constants_mips.h 22 #include "arch/mips/registers_mips.h"
  /bionic/libc/bionic/
crtbrand.c 49 * These steps are done in the invididual Makefiles for each applicable arch.
  /bionic/libc/include/
ar.h 50 #define ARMAG "!<arch>\n" /* ar "magic number" */
  /bionic/linker/
Android.mk 11 arch/$(TARGET_ARCH)/begin.$(linker_begin_extension) \

Completed in 840 milliseconds

<<41424344454647484950>>