Searched refs:elf32_to_cpu (Results 1 – 3 of 3) sorted by relevance
/linux-6.3-rc2/kernel/ |
A D | kexec_elf.c | 152 ehdr->e_version = elf32_to_cpu(ehdr, buf_ehdr->e_version); in elf_read_ehdr() 153 ehdr->e_flags = elf32_to_cpu(ehdr, buf_ehdr->e_flags); in elf_read_ehdr() 168 ehdr->e_entry = elf32_to_cpu(ehdr, buf_ehdr->e_entry); in elf_read_ehdr() 169 ehdr->e_phoff = elf32_to_cpu(ehdr, buf_ehdr->e_phoff); in elf_read_ehdr() 170 ehdr->e_shoff = elf32_to_cpu(ehdr, buf_ehdr->e_shoff); in elf_read_ehdr() 229 phdr->p_offset = elf32_to_cpu(ehdr, buf_phdr->p_offset); in elf_read_phdr() 230 phdr->p_paddr = elf32_to_cpu(ehdr, buf_phdr->p_paddr); in elf_read_phdr() 231 phdr->p_vaddr = elf32_to_cpu(ehdr, buf_phdr->p_vaddr); in elf_read_phdr() 232 phdr->p_filesz = elf32_to_cpu(ehdr, buf_phdr->p_filesz); in elf_read_phdr() 233 phdr->p_memsz = elf32_to_cpu(ehdr, buf_phdr->p_memsz); in elf_read_phdr() [all …]
|
/linux-6.3-rc2/arch/mips/boot/tools/ |
A D | relocs.c | 169 static uint32_t elf32_to_cpu(uint32_t val) in elf32_to_cpu() function 186 #define elf_word_to_cpu(x) elf32_to_cpu(x) 200 #define elf_addr_to_cpu(x) elf32_to_cpu(x) 201 #define elf_off_to_cpu(x) elf32_to_cpu(x) 202 #define elf_xword_to_cpu(x) elf32_to_cpu(x) 398 ELF_R_SYM(rel->r_info) = elf32_to_cpu(ELF_R_SYM(rel->r_info)); in read_relocs()
|
/linux-6.3-rc2/arch/x86/tools/ |
A D | relocs.c | 327 static uint32_t elf32_to_cpu(uint32_t val) in elf32_to_cpu() function 333 #define elf_word_to_cpu(x) elf32_to_cpu(x) 344 #define elf_addr_to_cpu(x) elf32_to_cpu(x) 345 #define elf_off_to_cpu(x) elf32_to_cpu(x) 346 #define elf_xword_to_cpu(x) elf32_to_cpu(x) 363 return elf32_to_cpu(xsymtab[index]); in sym_index()
|
Completed in 7 milliseconds