HomeSort by relevance Sort by last modified time
    Searched refs:arch (Results 201 - 225 of 358) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm/
memory.h 22 #include <asm/arch/memory.h>
  /external/bluetooth/glib/debian/
rules 62 binary-arch: build install libglib-cvs-dev libglib-cvs-1.1 libglib-cvs-dbg
125 binary: binary-indep binary-arch
126 .PHONY: build clean binary-indep binary-arch binary
  /external/dropbear/debian/
rules 96 binary-arch: install dropbear.deb
103 binary: binary-arch binary-indep
105 .PHONY: patch build clean install binary-indep binary-arch binary
  /external/kernel-headers/original/asm-arm/arch/
hardware.h 2 * linux/include/asm-arm/arch-omap/hardware.h
42 #include <asm/arch/cpu.h>
44 #include <asm/arch/io.h>
45 #include <asm/arch/serial.h>
149 * XXX: These probably want to be moved to arch/arm/mach-omap/omap1/irq.c
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/valgrind/main/coregrind/m_syswrap/
syswrap-x86-linux.c 250 setup_child( &ctst->arch, &ptst->arch, True );
254 ctst->arch.vex.guest_EAX = 0;
257 ctst->arch.vex.guest_ESP = esp;
313 ptst->arch.vex.guest_ESP,
314 ctst->arch.vex.guest_FS, ctst->arch.vex.guest_GS);
337 VG_(cleanup_thread)(&ctst->arch);
549 ldt = (Char*)(VG_(threads)[tid].arch.vex.guest_LDT);
583 ldt = (VexGuestX86SegDescr*)VG_(threads)[tid].arch.vex.guest_LDT
    [all...]
syswrap-ppc32-linux.c 280 setup_child( &ctst->arch, &ptst->arch );
284 { UInt old_cr = LibVEX_GuestPPC32_get_CR( &ctst->arch.vex );
286 ctst->arch.vex.guest_GPR3 = 0;
288 LibVEX_GuestPPC32_put_CR( old_cr & ~(1<<28), &ctst->arch.vex );
292 ctst->arch.vex.guest_GPR1 = sp;
342 ctst->arch.vex.guest_GPR2 = child_tls;
368 VG_(cleanup_thread)(&ctst->arch);
383 void VG_(cleanup_thread) ( ThreadArchState* arch )
    [all...]
syswrap-ppc64-linux.c 308 setup_child( &ctst->arch, &ptst->arch );
312 { UInt old_cr = LibVEX_GuestPPC64_get_CR( &ctst->arch.vex );
314 ctst->arch.vex.guest_GPR3 = 0;
316 LibVEX_GuestPPC64_put_CR( old_cr & ~(1<<28), &ctst->arch.vex );
320 ctst->arch.vex.guest_GPR1 = sp;
370 ctst->arch.vex.guest_GPR13 = child_tls;
398 VG_(cleanup_thread)(&ctst->arch);
413 void VG_(cleanup_thread) ( ThreadArchState* arch )
    [all...]
syswrap-amd64-linux.c 239 setup_child( &ctst->arch, &ptst->arch );
243 ctst->arch.vex.guest_RAX = 0;
246 ctst->arch.vex.guest_RSP = rsp;
296 ctst->arch.vex.guest_FS_ZERO = tlsaddr;
316 VG_(cleanup_thread)(&ctst->arch);
330 void VG_(cleanup_thread) ( ThreadArchState *arch )
504 tst->arch.vex.guest_RSP -= sizeof(Addr);
509 ML_(fixup_guest_state_to_restart_syscall)(&tst->arch);
542 tst->arch.vex.guest_FS_ZERO = ARG2
    [all...]
  /external/clang/tools/scan-build/
c++-analyzer 337 '-arch' => 1,
447 # Specially handle duplicate cases of -arch
448 if ($Arg eq "-arch") {
449 my $arch = $ARGV[$i+1];
452 if (!(defined $DisabledArchs{$arch})) { $ArchsSeen{$arch} = 1; }
648 foreach my $arch (@Archs) {
650 push @NewArgs, '-arch', $arch;
ccc-analyzer 337 '-arch' => 1,
447 # Specially handle duplicate cases of -arch
448 if ($Arg eq "-arch") {
449 my $arch = $ARGV[$i+1];
452 if (!(defined $DisabledArchs{$arch})) { $ArchsSeen{$arch} = 1; }
648 foreach my $arch (@Archs) {
650 push @NewArgs, '-arch', $arch;
  /ndk/build/tools/
gen-platforms.sh 28 # $SRC/android-N/include --> $DST/android-N/arch-A/usr/include
29 # $SRC/android-N/arch-A/include --> $DST/android-N/arch-A/usr/include
30 # $SRC/android-N/arch-A/lib --> $DST/android-N/arch-A/usr/lib
34 # $SRC/android-N/arch-A/symbols --> $DST/android-N/arch-A/usr/lib
99 --arch=*)
135 echo " --arch=<list> List of CPU architectures [$ARCHS]"
183 # We support both --arch and --abi for backwards compatibility reason
    [all...]
make-standalone-toolchain.sh 33 ARCH=
34 register_option "--arch=<name>" do_arch "Specify target architecture" "arm"
35 do_arch () { ARCH=$1; }
64 # Check ARCH
65 if [ -z "$ARCH" ]; then
68 ARCH=arm
71 ARCH=x86
74 ARCH=arm
77 log "Auto-config: --arch=$ARCH"
    [all...]
  /external/valgrind/main/VEX/priv/
main_main.c 67 static Bool are_valid_hwcaps ( VexArch arch, UInt hwcaps );
68 static HChar* show_hwcaps ( VexArch arch, UInt hwcaps );
708 /* ------------------ Arch/HwCaps stuff. ------------------ */
710 const HChar* LibVEX_ppVexArch ( VexArch arch )
712 switch (arch) {
723 const HChar* LibVEX_ppVexHwCaps ( VexArch arch, UInt hwcaps )
725 HChar* str = show_hwcaps(arch,hwcaps);
891 static HChar* show_hwcaps ( VexArch arch, UInt hwcaps )
893 switch (arch) {
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 218 struct fat_arch arch; local
240 arch.cputype = VG_(ntohl)(arch_be->cputype);
241 arch.cpusubtype = VG_(ntohl)(arch_be->cpusubtype);
242 arch.offset = VG_(ntohl)(arch_be->offset);
243 arch.size = VG_(ntohl)(arch_be->size);
244 if (arch.cputype == cputype) {
245 if (ii->img_szB < arch.offset + arch.size) {
249 ii->macho_img = ii->img + arch.offset;
250 ii->macho_img_szB = arch.size
    [all...]
  /external/e2fsprogs/debian/attic/libs/
rules 14 ARCH = $(shell dpkg --print-architecture)
36 ifeq ($(ARCH),alpha)
69 # no arch-independant debs.
71 binary-arch: build
180 binary: binary-indep binary-arch
182 .PHONY: binary binary-arch binary-indep clean checkroot
  /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 system/core/include/arch/<combo>/AndroidConfig.h. Their
37 TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT).mk
214 KERNEL_HEADERS_ARCH := $(libc_root)/kernel/arch-$(TARGET_ARCH)
219 $(libc_root)/arch-arm/include \
TARGET_linux-sh.mk 98 KERNEL_HEADERS_ARCH := $(libc_root)/kernel/arch-$(TARGET_ARCH)
103 $(libc_root)/arch-sh/include \
TARGET_linux-x86.mk 66 KERNEL_HEADERS_ARCH := $(libc_root)/kernel/arch-$(TARGET_ARCH)
112 $(libc_root)/arch-x86/include \
  /frameworks/compile/libbcc/runtime/
Makefile 47 @echo " <platform name>-<config name>-<arch name>:"
48 @echo " build the libraries for a single config and arch"
142 $(call VarOrDefault,$(Tmp.Key).Arch.$(Tmp.Config),$($(Tmp.Key).Arch))))
158 # Per-Config-Arch Libraries
159 $(foreach arch,$(Tmp.ArchsToBuild),\
160 $(call PerPlatformConfigArch_template,$(arch)))
164 $(call Set,Tmp.Arch,$(1))
165 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)/$(Tmp.Config)/$(Tmp.Arch))
167 $(call GetCNAVar,FUNCTIONS,$(Tmp.Key),$(Tmp.Config),$(Tmp.Arch))))
    [all...]
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 418 OwningPtr<MemoryBuffer> arch; local
419 if (error_code ec = MemoryBuffer::getFile(TmpArchive.c_str(), arch)) {
424 const char* base = arch->getBufferStart();
462 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
466 } // free arch.
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.h 77 llvm::Triple::ArchType Arch;
84 return (Arch == key.Arch &&
90 return ((Arch < key.Arch) ||
91 ((Arch == key.Arch) && Syntax < (key.Syntax)));
105 /// @arg arch - The desired architecture
107 static EDDisassembler *getDisassembler(llvm::Triple::ArchType arch,
  /external/valgrind/main/coregrind/
pub_core_machine.h 103 # error Unknown arch
  /external/llvm/include/llvm/Bitcode/
Archive.h 259 inline void splice(iterator dest, Archive& arch, iterator src)
260 { return members.splice(dest,arch.members,src); }
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_linux.py 62 base, arch = port_name.rsplit('-', 1)
64 self._architecture = arch

Completed in 228 milliseconds

1 2 3 4 5 6 7 891011>>