Lines Matching refs:e
167 static void convert_elf_hdr(Elf32_Ehdr * e) in convert_elf_hdr() argument
169 e->e_type = swab16(e->e_type); in convert_elf_hdr()
170 e->e_machine = swab16(e->e_machine); in convert_elf_hdr()
171 e->e_version = swab32(e->e_version); in convert_elf_hdr()
172 e->e_entry = swab32(e->e_entry); in convert_elf_hdr()
173 e->e_phoff = swab32(e->e_phoff); in convert_elf_hdr()
174 e->e_shoff = swab32(e->e_shoff); in convert_elf_hdr()
175 e->e_flags = swab32(e->e_flags); in convert_elf_hdr()
176 e->e_ehsize = swab16(e->e_ehsize); in convert_elf_hdr()
177 e->e_phentsize = swab16(e->e_phentsize); in convert_elf_hdr()
178 e->e_phnum = swab16(e->e_phnum); in convert_elf_hdr()
179 e->e_shentsize = swab16(e->e_shentsize); in convert_elf_hdr()
180 e->e_shnum = swab16(e->e_shnum); in convert_elf_hdr()
181 e->e_shstrndx = swab16(e->e_shstrndx); in convert_elf_hdr()