HomeSort by relevance Sort by last modified time
    Searched refs:ELFType (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Object/
ELFObjectFile.cpp 32 R.reset(new ELFObjectFile<ELFType<support::little, 4, false>>(
37 R.reset(new ELFObjectFile<ELFType<support::little, 2, false>>(
44 R.reset(new ELFObjectFile<ELFType<support::big, 4, false>>(std::move(Obj),
49 R.reset(new ELFObjectFile<ELFType<support::big, 2, false>>(std::move(Obj),
56 R.reset(new ELFObjectFile<ELFType<support::big, 8, true>>(std::move(Obj),
61 R.reset(new ELFObjectFile<ELFType<support::big, 2, true>>(std::move(Obj),
68 R.reset(new ELFObjectFile<ELFType<support::little, 8, true>>(
73 R.reset(new ELFObjectFile<ELFType<support::little, 2, true>>(
  /external/llvm/include/llvm/Object/
ELFTypes.h 25 struct ELFType {
61 struct ELFDataTypeTypedefHelper<ELFType<TargetEndianness, MaxAlign, false> >
74 struct ELFDataTypeTypedefHelper<ELFType<TargetEndianness, MaxAlign, true> >
87 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Addr \
89 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Off \
91 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Half \
93 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Word \
95 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Sword \
97 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Xword \
99 typedef typename ELFDataTypeTypedefHelper<ELFType<E, M, W> >::Elf_Sxword
    [all...]
ELF.h 428 typedef ELFFile<ELFType<support::little, 2, false> > ELF32LEFile;
429 typedef ELFFile<ELFType<support::little, 2, true> > ELF64LEFile;
430 typedef ELFFile<ELFType<support::big, 2, false> > ELF32BEFile;
431 typedef ELFFile<ELFType<support::big, 2, true> > ELF64BEFile;
    [all...]
ELFObjectFile.h 216 typedef ELFObjectFile<ELFType<support::little, 2, false> > ELF32LEObjectFile;
217 typedef ELFObjectFile<ELFType<support::little, 2, true> > ELF64LEObjectFile;
218 typedef ELFObjectFile<ELFType<support::big, 2, false> > ELF32BEObjectFile;
219 typedef ELFObjectFile<ELFType<support::big, 2, true> > ELF64BEObjectFile;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 193 llvm::make_unique<DyldELFObject<ELFType<support::little, 2, false>>>(
195 return new ELFObjectImage<ELFType<support::little, 2, false>>(
199 llvm::make_unique<DyldELFObject<ELFType<support::big, 2, false>>>(
201 return new ELFObjectImage<ELFType<support::big, 2, false>>(nullptr, std::move(Obj));
203 auto Obj = llvm::make_unique<DyldELFObject<ELFType<support::big, 2, true>>>(
205 return new ELFObjectImage<ELFType<support::big, 2, true>>(nullptr,
209 llvm::make_unique<DyldELFObject<ELFType<support::little, 2, true>>>(
211 return new ELFObjectImage<ELFType<support::little, 2, true>>(
229 llvm::make_unique<DyldELFObject<ELFType<support::little, 4, false>>>(
231 return new ELFObjectImage<ELFType<support::little, 4, false>>
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 478 using object::ELFType;
479 typedef ELFType<support::little, 8, true> LE64;
480 typedef ELFType<support::big, 8, true> BE64;
481 typedef ELFType<support::little, 4, false> LE32;
482 typedef ELFType<support::big, 4, false> BE32;
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]

Completed in 602 milliseconds