HomeSort by relevance Sort by last modified time
    Searched defs:ELF (Results 1 - 14 of 14) sorted by null

  /external/libpng/arm/
filter_neon.S 35 # define ELF
37 # define ELF @
45 ELF .size \name, . - \name
53 ELF .type \name, STT_FUNC
  /frameworks/compile/mclinker/include/mcld/Support/
ELF.h 1 //===- ELF.h --------------------------------------------------------------===//
13 namespace ELF {
30 } // namespace of ELF
  /external/chromium_org/third_party/android_crazy_linker/src/src/
elf_traits.h 8 // NOTE: <stdint.h> is required here before <elf.h>. This is a NDK header bug.
10 #include <elf.h>
12 // ELF is a traits structure used to provide convenient aliases for
13 // 32/64 bit Elf types, depending on the target CPU bitness.
15 struct ELF {
39 struct ELF {
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 45 * to emit binaries in native object format, such as ELF or MachO.
51 ELF,
139 /// file. So far, MCLinekr only supports ELF object format, but it will
230 /// value is format-dependent. In ELF, the value is
232 /// @param pFlag [in] The format-dependent flag. In ELF, the value is
  /ndk/sources/android/crazy_linker/src/
elf_traits.h 8 // NOTE: <stdint.h> is required here before <elf.h>. This is a NDK header bug.
10 #include <elf.h>
12 // ELF is a traits structure used to provide convenient aliases for
13 // 32/64 bit Elf types, depending on the target CPU bitness.
15 struct ELF {
39 struct ELF {
  /frameworks/compile/mclinker/include/mcld/ADT/
StringHash.h 24 ELF,
111 /** \class StringHash<ELF>
112 * \brief ELF hash function.
115 struct StringHash<ELF> : public std::unary_function<const llvm::StringRef&, uint32_t>
  /external/chromium_org/chrome_elf/create_file/
chrome_create_file_unittest.cc 48 ELF,
121 &ChromeCreateFileTest::FakeNtCreateFile<ELF>);
151 call_path == ELF ? &elf_params_ : &kernel_params_);
197 std::bitset<32> elf((int) elf_params_.desired_access);
201 << elf << "\n" << ker;
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 16 #include "llvm/Object/ELF.h"
309 const object::ELFFile<ET> *ELF;
338 : SW(Writer), ELF(File) {}
349 for (Elf_Sym_iterator SI = ELF->begin_symbols(), SE = ELF->end_symbols();
352 SI->getType() == ELF::STT_FUNC)
353 return ELF->getSymbolName(SI);
369 for (Elf_Shdr_iterator SI = ELF->begin_sections(), SE = ELF->end_sections();
371 if (SI->sh_type == ELF::SHT_REL && SI->sh_info == IndexSectionIndex)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 18 #include <llvm/Support/ELF.h>
74 if (llvm::ELF::R_MIPS_26 != pType)
234 uint64_t picFlags = llvm::ELF::EF_MIPS_CPIC;
236 picFlags |= llvm::ELF::EF_MIPS_PIC;
240 picFlags |= llvm::ELF::EF_MIPS_PIC;
328 namespace ELF {
385 if (pSD.getSection().type() == llvm::ELF::SHT_MIPS_OPTIONS) {
391 const llvm::ELF::Elf_Options* optb =
392 reinterpret_cast<const llvm::ELF::Elf_Options*>(region.begin());
393 const llvm::ELF::Elf_Options* opte
    [all...]
MipsRelocator.cpp 20 #include <llvm/Support/ELF.h>
23 namespace ELF {
32 } // end namespace ELF
45 if (llvm::ELF::R_MIPS_NONE == pType)
49 llvm::ELF::R_MIPS_NONE != (type & 0xff); type >>= 8) {
64 if (pIsRel && (type() < llvm::ELF::R_MIPS_LA25_LUI ||
65 type() > llvm::ELF::R_MIPS_LA25_ADD))
73 return llvm::ELF::R_MIPS_NONE == type();
78 return llvm::ELF::R_MIPS_NONE == (m_Type >> 8);
242 if (0 == (pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC)
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 144 ELF,
395 /// \brief Tests whether the OS uses the ELF binary format.
397 return getObjectFormat() == Triple::ELF;
  /external/chromium_org/v8/src/
gdb-jit.cc 30 class ELF;
32 typedef ELF DebugObject;
607 class ELF BASE_EMBEDDED {
609 explicit ELF(Zone* zone) : zone_(zone), sections_(6, zone) {
671 // Set to EM_ARM, defined as 40, in "ARM ELF File Format" at
1001 ELF* elf,
1007 elf->AddSection(symtab);
1008 elf->AddSection(strtab);
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/llvm/include/llvm/Support/
ELF.h 1 //===-- llvm/Support/ELF.h - ELF constants and data structures --*- C++ -*-===//
11 // constants for the ELF file format.
14 // Interface Standard (TIS) Executable and Linking Format (ELF) Specification
15 // Version 1.2, May 1995. The ELF64 stuff is based on ELF-64 Object File Format
29 namespace ELF {
64 unsigned char e_ident[EI_NIDENT]; // ELF Identification bytes
72 Elf32_Half e_ehsize; // Size of ELF header, in bytes
85 // 64-bit ELF header. Fields are the same as for ELF32, but with different
127 // See current registered ELF machine architectures at
    [all...]

Completed in 189 milliseconds