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 35 R.reset(new ELFObjectFile<ELFType<support::little, 4, false>>(Obj, EC));
39 R.reset(new ELFObjectFile<ELFType<support::little, 2, false>>(Obj, EC));
45 R.reset(new ELFObjectFile<ELFType<support::big, 4, false>>(Obj, EC));
49 R.reset(new ELFObjectFile<ELFType<support::big, 2, false>>(Obj, EC));
55 R.reset(new ELFObjectFile<ELFType<support::big, 8, true>>(Obj, EC));
59 R.reset(new ELFObjectFile<ELFType<support::big, 2, true>>(Obj, EC));
65 R.reset(new ELFObjectFile<ELFType<support::little, 8, true>>(Obj, EC));
69 R.reset(new ELFObjectFile<ELFType<support::little, 2, true>>(Obj, EC));
  /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 247 typedef ELFObjectFile<ELFType<support::little, 2, false> > ELF32LEObjectFile;
248 typedef ELFObjectFile<ELFType<support::little, 2, true> > ELF64LEObjectFile;
249 typedef ELFObjectFile<ELFType<support::big, 2, false> > ELF32BEObjectFile;
250 typedef ELFObjectFile<ELFType<support::big, 2, true> > ELF64BEObjectFile;
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 524 using object::ELFType;
525 typedef ELFType<support::little, 8, true> LE64;
526 typedef ELFType<support::big, 8, true> BE64;
527 typedef ELFType<support::little, 4, false> LE32;
528 typedef ELFType<support::big, 4, false> BE32;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 159 typedef ELFType<support::little, 2, false> ELF32LE;
162 typedef ELFType<support::big, 2, false> ELF32BE;
165 typedef ELFType<support::big, 2, true> ELF64BE;
168 typedef ELFType<support::little, 2, true> ELF64LE;
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]

Completed in 347 milliseconds