Lines Matching defs:ELF64_traits
44 struct ELF64_traits { struct
45 typedef Elf64_Addr Addr;
46 typedef Elf64_Dyn Dyn;
47 typedef Elf64_Ehdr Ehdr;
48 typedef Elf64_Off Off;
49 typedef Elf64_Phdr Phdr;
50 typedef Elf64_Rel Rel;
51 typedef Elf64_Rela Rela;
52 typedef Elf64_Shdr Shdr;
53 typedef Elf64_Sword Sword;
54 typedef Elf64_Sxword Sxword;
55 typedef Elf64_Sym Sym;
56 typedef Elf64_Word Word;
57 typedef Elf64_Xword Xword;
58 typedef Elf64_Half Half;
60 static inline Ehdr* getehdr(Elf* elf) { return elf64_getehdr(elf); } in getehdr()
61 static inline Phdr* getphdr(Elf* elf) { return elf64_getphdr(elf); } in getphdr()
62 static inline Shdr* getshdr(Elf_Scn* scn) { return elf64_getshdr(scn); } in getshdr()
63 static inline Xword elf_r_type(Xword info) { return ELF64_R_TYPE(info); } in elf_r_type()
64 static inline int elf_st_type(uint8_t info) { return ELF64_ST_TYPE(info); } in elf_st_type()
65 static inline Word elf_r_sym(Xword info) { return ELF64_R_SYM(info); } in elf_r_sym()