Symbol: elf32_to_cpu
arch/mips/boot/tools/relocs.c
187
#define elf_word_to_cpu(x) elf32_to_cpu(x)
arch/mips/boot/tools/relocs.c
201
#define elf_addr_to_cpu(x) elf32_to_cpu(x)
arch/mips/boot/tools/relocs.c
202
#define elf_off_to_cpu(x) elf32_to_cpu(x)
arch/mips/boot/tools/relocs.c
203
#define elf_xword_to_cpu(x) elf32_to_cpu(x)
arch/mips/boot/tools/relocs.c
399
ELF_R_SYM(rel->r_info) = elf32_to_cpu(ELF_R_SYM(rel->r_info));
arch/s390/tools/relocs.c
97
#define elf_word_to_cpu(x) elf32_to_cpu(x)
arch/x86/tools/relocs.c
313
#define elf_word_to_cpu(x) elf32_to_cpu(x)
arch/x86/tools/relocs.c
324
# define elf_addr_to_cpu(x) elf32_to_cpu(x)
arch/x86/tools/relocs.c
325
# define elf_off_to_cpu(x) elf32_to_cpu(x)
arch/x86/tools/relocs.c
326
# define elf_xword_to_cpu(x) elf32_to_cpu(x)
arch/x86/tools/relocs.c
343
return elf32_to_cpu(xsymtab[index]);
kernel/kexec_elf.c
152
ehdr->e_version = elf32_to_cpu(ehdr, buf_ehdr->e_version);
kernel/kexec_elf.c
153
ehdr->e_flags = elf32_to_cpu(ehdr, buf_ehdr->e_flags);
kernel/kexec_elf.c
168
ehdr->e_entry = elf32_to_cpu(ehdr, buf_ehdr->e_entry);
kernel/kexec_elf.c
169
ehdr->e_phoff = elf32_to_cpu(ehdr, buf_ehdr->e_phoff);
kernel/kexec_elf.c
170
ehdr->e_shoff = elf32_to_cpu(ehdr, buf_ehdr->e_shoff);
kernel/kexec_elf.c
215
phdr->p_type = elf32_to_cpu(elf_info->ehdr, buf_phdr->p_type);
kernel/kexec_elf.c
216
phdr->p_flags = elf32_to_cpu(elf_info->ehdr, buf_phdr->p_flags);
kernel/kexec_elf.c
229
phdr->p_offset = elf32_to_cpu(ehdr, buf_phdr->p_offset);
kernel/kexec_elf.c
230
phdr->p_paddr = elf32_to_cpu(ehdr, buf_phdr->p_paddr);
kernel/kexec_elf.c
231
phdr->p_vaddr = elf32_to_cpu(ehdr, buf_phdr->p_vaddr);
kernel/kexec_elf.c
232
phdr->p_filesz = elf32_to_cpu(ehdr, buf_phdr->p_filesz);
kernel/kexec_elf.c
233
phdr->p_memsz = elf32_to_cpu(ehdr, buf_phdr->p_memsz);
kernel/kexec_elf.c
234
phdr->p_align = elf32_to_cpu(ehdr, buf_phdr->p_align);