HomeSort by relevance Sort by last modified time
    Searched refs:machine (Results 851 - 875 of 1088) sorted by null

<<31323334353637383940>>

  /toolchain/binutils/binutils-2.25/bfd/
pdp11.c 585 /* Determine the architecture and machine type of the object file. */
679 /* Keep track of machine architecture and machine type for
681 architecture and machine, or <<M_UNKNOWN>> if that exact architecture
682 and machine can't be represented in a.out format.
684 If the architecture is understood, machine type 0 (default)
689 unsigned long machine,
700 if (machine == 0
701 || machine == bfd_mach_sparc
702 || machine == bfd_mach_sparc_sparclit
    [all...]
tekhex.c 678 unsigned long machine)
681 return (bfd_default_set_arch_mach (abfd, arch, machine)
  /external/v8/test/unittests/compiler/
node-matchers-unittest.cc 7 #include "src/compiler/machine-operator.h"
24 MachineOperatorBuilder* machine() { return &machine_; } function in class:v8::internal::compiler::NodeMatcherTest
90 const Operator* a_op = machine()->Int32Add();
93 const Operator* m_op = machine()->Int32Mul();
111 const Operator* s_op = machine()->Word32Shl();
409 const Operator* a_op = machine()->Int64Add();
412 const Operator* m_op = machine()->Int64Mul();
430 const Operator* s_op = machine()->Word64Shl();
    [all...]
  /external/libunwind/aux/
config.guess 145 arm*) machine=arm-unknown ;;
146 sh3el) machine=shl-unknown ;;
147 sh3eb) machine=sh-unknown ;;
148 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
174 echo "${machine}-${os}${release}"
358 # The situation for MiNT is a little confusing. The machine name
908 case `/bin/uname -X | grep "^Machine"` in
922 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
924 (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \
926 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null)
    [all...]
  /external/v8/src/compiler/
js-native-context-specialization.cc 138 graph()->NewNode(machine()->Uint32LessThan(), receiver_instance_type,
234 machine()->Word32Equal(),
235 graph()->NewNode(machine()->Word32And(), this_buffer_bit_field,
1012 MachineOperatorBuilder* JSNativeContextSpecialization::machine() const { function in class:v8::internal::compiler::JSNativeContextSpecialization
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/devscripts/
licensecheck.pl.vanilla 32 [B<-m>|B<--machine>] [B<-r>|B<--recursive>]
82 =item B<-m>, B<--machine>
84 Display the information in a machine readable way, i.e. in the form
231 "machine|m" => \$opt_machine,
377 --machine, -m Display in a machine readable way (good for awk)
  /external/elfutils/src/
ld.h 239 no machine-specific code must use this flag. */
338 #define OPEN_OUTFILE(state, machine, class, data) \
339 DL_CALL_FCT ((state)->callbacks.open_outfile, (state, machine, class, data))
    [all...]
  /prebuilts/go/darwin-x86/src/
make.bat 13 :: GOHOSTARCH=386 on an amd64 machine.
  /prebuilts/go/linux-x86/src/
make.bat 13 :: GOHOSTARCH=386 on an amd64 machine.
  /sdk/find_java/
find_java.bat 25 rem Note: Some users report that reg.exe is missing on their machine, so we
  /bionic/libc/arch-arm/cortex-a15/bionic/
strcmp.S 29 #include <machine/cpu-features.h>
  /bionic/libc/arch-arm/generic/bionic/
memcmp.S 29 #include <machine/cpu-features.h>
strcmp.S 30 #include <machine/cpu-features.h>
113 /* On a big-endian machine, r0 contains the desired byte in bits
114 * 0-7; on a little-endian machine they are in bits 24-31. In
  /external/compiler-rt/lib/builtins/
atomic.c 56 #include <machine/atomic.h>
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc 78 && internal_strstr(uname_info.machine, "64"))
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 158 // We cannot depend on uts.machine. On multiarch devices it always returns the
181 LogAppend(uts.machine);
  /external/libunwind/src/x86/
Gos-freebsd.c 33 #include <machine/sigframe.h>
  /external/llvm/test/CodeGen/PowerPC/
hello-reloc.s 7 .machine ppc7400
  /external/toybox/toys/pending/
bootchartd.c 227 uts.version, uts.machine);
getty.c 235 if (*ch == 'm') fputs(u.machine, stdout);
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 267 /// isMyMachine - is this ELF file generated for the same machine.
273 return (hdr->e_machine == target().getInfo().machine());
274 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
761 /// isMyMachine - is this ELF file generated for the same machine.
767 return (hdr->e_machine == target().getInfo().machine());
768 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
function.h 550 struct machine_function * GTY ((maybe_undef)) machine;
  /external/blktrace/btreplay/doc/
btreplay.tex 62 one is able to \emph{replay} the IO again on the same machine or another
215 machine must be the same as on the recording machine.
220 on one machine to devices (with offsets and sizes) on the replay
221 machine\footnote{The notion of an offset and device size to replay on
229 replay machine.}
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 320 if (strcmp(uts.machine, "i86pc") == 0)
322 else if (strcmp(uts.machine, "sun4u") == 0)
353 uts.machine,
  /external/ltrace/sysdeps/linux-gnu/ppc/
plt.c 226 reloc_is_irelative(int machine, GElf_Rela *rela)
229 if (machine == EM_PPC64) {
234 assert(machine == EM_PPC);
    [all...]

Completed in 674 milliseconds

<<31323334353637383940>>