HomeSort by relevance Sort by last modified time
    Searched full:elftype (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/lib/Object/
ELFObjectFile.cpp 37 R.reset(new ELFObjectFile<ELFType<support::little, false>>(Obj, EC));
39 R.reset(new ELFObjectFile<ELFType<support::big, false>>(Obj, EC));
44 R.reset(new ELFObjectFile<ELFType<support::little, true>>(Obj, EC));
46 R.reset(new ELFObjectFile<ELFType<support::big, true>>(Obj, EC));
  /external/llvm/include/llvm/Object/
ELFTypes.h 24 template <endianness target_endianness, bool is64Bits> struct ELFType {
29 typedef ELFType<support::little, false> ELF32LE;
30 typedef ELFType<support::big, false> ELF32BE;
31 typedef ELFType<support::little, true> ELF64LE;
32 typedef ELFType<support::big, true> ELF64BE;
55 struct ELFDataTypeTypedefHelper<ELFType<TargetEndianness, false>>
66 struct ELFDataTypeTypedefHelper<ELFType<TargetEndianness, true>>
77 typedef typename ELFDataTypeTypedefHelper<ELFType<E, W>>::Elf_Addr Elf_Addr; \
78 typedef typename ELFDataTypeTypedefHelper<ELFType<E, W>>::Elf_Off Elf_Off; \
79 typedef typename ELFDataTypeTypedefHelper<ELFType<E, W>>::Elf_Half Elf_Half;
    [all...]
ELF.h 219 typedef ELFFile<ELFType<support::little, false>> ELF32LEFile;
220 typedef ELFFile<ELFType<support::little, true>> ELF64LEFile;
221 typedef ELFFile<ELFType<support::big, false>> ELF32BEFile;
222 typedef ELFFile<ELFType<support::big, true>> ELF64BEFile;
ELFObjectFile.h 346 typedef ELFObjectFile<ELFType<support::little, false>> ELF32LEObjectFile;
347 typedef ELFObjectFile<ELFType<support::little, true>> ELF64LEObjectFile;
348 typedef ELFObjectFile<ELFType<support::big, false>> ELF32BEObjectFile;
349 typedef ELFObjectFile<ELFType<support::big, true>> ELF64BEObjectFile;
  /external/minijail/
elfparse.c 17 ElfType parseElf ## bit(FILE *elf_file, uint8_t *pHead, int little_endian) \
19 ElfType ret = ELFSTATIC; \
60 ElfType get_elf_linkage(const char *path)
62 ElfType ret = ELFERROR;
elfparse.h 95 typedef enum ElfTypeEnum ElfType;
103 ElfType get_elf_linkage(const char *path);
minijail0.c 349 ElfType elftype = ELFERROR; local
364 elftype = get_elf_linkage(program_path);
365 if (elftype == ELFSTATIC) {
371 } else if (elftype == ELFDYNAMIC) {
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
link.go 60 // ElfType is set for symbols read from shared libraries by ldshlibsyms. It
63 ElfType elf.SymType
ldelf.go 975 func reltype(pn string, elftype int, siz *uint8) int {
976 switch uint32(Thearch.Thechar) | uint32(elftype)<<24 {
978 Diag("%s: unknown relocation type %d; compiled without -fpic?", pn, elftype)
1021 return 256 + elftype
symtab.go 114 // ElfType is only set for symbols read from Go shared libraries, but
116 type_ = int(x.ElfType)
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
link.go 57 // ElfType is set for symbols read from shared libraries by ldshlibsyms. It
60 ElfType elf.SymType
ldelf.go 972 func reltype(pn string, elftype int, siz *uint8) int {
973 switch uint32(Thearch.Thechar) | uint32(elftype)<<24 {
975 Diag("%s: unknown relocation type %d; compiled without -fpic?", pn, elftype)
1018 return 256 + elftype
symtab.go 111 // ElfType is only set for symbols read from Go shared libraries, but
113 type_ = int(x.ElfType)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
link.go 60 // ElfType is set for symbols read from shared libraries by ldshlibsyms. It
63 ElfType elf.SymType
ldelf.go 975 func reltype(pn string, elftype int, siz *uint8) int {
976 switch uint32(Thearch.Thechar) | uint32(elftype)<<24 {
978 Diag("%s: unknown relocation type %d; compiled without -fpic?", pn, elftype)
1021 return 256 + elftype
symtab.go 114 // ElfType is only set for symbols read from Go shared libraries, but
116 type_ = int(x.ElfType)
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 57 // ElfType is set for symbols read from shared libraries by ldshlibsyms. It
60 ElfType elf.SymType
ldelf.go 972 func reltype(pn string, elftype int, siz *uint8) int {
973 switch uint32(Thearch.Thechar) | uint32(elftype)<<24 {
975 Diag("%s: unknown relocation type %d; compiled without -fpic?", pn, elftype)
1018 return 256 + elftype
symtab.go 111 // ElfType is only set for symbols read from Go shared libraries, but
113 type_ = int(x.ElfType)
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 568 using object::ELFType;
569 typedef ELFType<support::little, true> LE64;
570 typedef ELFType<support::big, true> BE64;
571 typedef ELFType<support::little, false> LE32;
572 typedef ELFType<support::big, false> BE32;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 161 typedef ELFType<support::little, false> ELF32LE;
165 typedef ELFType<support::big, false> ELF32BE;
169 typedef ELFType<support::big, true> ELF64BE;
173 typedef ELFType<support::little, true> ELF64LE;
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsAbiFlags.cpp 25 typedef llvm::object::ELFType<llvm::support::little, false> ELF32LE;
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/amd64/
asm.go 376 if r.Xsym.Type == obj.SDYNIMPORT && r.Xsym.ElfType == elf.STT_FUNC {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/amd64/
asm.go 373 if r.Xsym.Type == obj.SDYNIMPORT && r.Xsym.ElfType == elf.STT_FUNC {

Completed in 884 milliseconds

1 2