Home
last modified time | relevance | path

Searched refs:bufp (Results 1 – 6 of 6) sorted by relevance

/arch/powerpc/platforms/powernv/
Dopal-core.c140 Elf64_Off *bufp = (Elf64_Off *)oc_conf->auxv_buf; in auxv_to_elf64_notes() local
143 memset(bufp, 0, AUXV_DESC_SZ); in auxv_to_elf64_notes()
146 bufp[idx++] = cpu_to_be64(AT_ENTRY); in auxv_to_elf64_notes()
147 bufp[idx++] = cpu_to_be64(opal_boot_entry); in auxv_to_elf64_notes()
150 bufp[idx++] = cpu_to_be64(AT_NULL); in auxv_to_elf64_notes()
228 char *bufp; in opalcore_append_cpu_notes() local
232 bufp = __va(oc_conf->cpu_state_destination_vaddr); in opalcore_append_cpu_notes()
239 thdr = (struct hdat_fadump_thread_hdr *)bufp; in opalcore_append_cpu_notes()
258 for (i = 0; i < oc_conf->num_cpus; i++, bufp += size_per_thread) { in opalcore_append_cpu_notes()
259 thdr = (struct hdat_fadump_thread_hdr *)bufp; in opalcore_append_cpu_notes()
[all …]
Dopal-fadump.h124 static inline void opal_fadump_read_regs(char *bufp, unsigned int regs_cnt, in opal_fadump_read_regs() argument
135 for (i = 0; i < regs_cnt; i++, bufp += reg_entry_size) { in opal_fadump_read_regs()
136 reg_entry = (struct hdat_fadump_reg_entry *)bufp; in opal_fadump_read_regs()
Dopal-fadump.c425 char *bufp; in opal_fadump_build_cpu_notes() local
431 bufp = __va(fadump_conf->cpu_state_dest_vaddr); in opal_fadump_build_cpu_notes()
448 thdr = (struct hdat_fadump_thread_hdr *)bufp; in opal_fadump_build_cpu_notes()
459 for (i = 0; i < num_cpus; i++, bufp += size_per_thread) { in opal_fadump_build_cpu_notes()
460 thdr = (struct hdat_fadump_thread_hdr *)bufp; in opal_fadump_build_cpu_notes()
491 opal_fadump_read_regs((bufp + regs_offset), regs_cnt, in opal_fadump_build_cpu_notes()
/arch/x86/crypto/
Dcrc32c-pcl-intel-asm_64.S77 #define bufp rdi macro
107 mov %bufp, bufptmp # rdi = *buf
108 neg %bufp
109 and $7, %bufp # calculate the unalignment amount of
220 lea (K_table-8)(%rip), %bufp # first entry is for idx 1
222 pmovzxdq (%bufp,%rax), %xmm0 # 2 consts: K1:K2
/arch/powerpc/kernel/
Dfadump.c756 void fadump_update_elfcore_header(char *bufp) in fadump_update_elfcore_header() argument
760 bufp += sizeof(struct elfhdr); in fadump_update_elfcore_header()
763 phdr = (struct elf_phdr *)bufp; in fadump_update_elfcore_header()
952 static int fadump_init_elfcore_header(char *bufp) in fadump_init_elfcore_header() argument
956 elf = (struct elfhdr *) bufp; in fadump_init_elfcore_header()
957 bufp += sizeof(struct elfhdr); in fadump_init_elfcore_header()
1061 static int fadump_create_elfcore_headers(char *bufp) in fadump_create_elfcore_headers() argument
1068 fadump_init_elfcore_header(bufp); in fadump_create_elfcore_headers()
1069 elf = (struct elfhdr *)bufp; in fadump_create_elfcore_headers()
1070 bufp += sizeof(struct elfhdr); in fadump_create_elfcore_headers()
[all …]
/arch/powerpc/include/asm/
Dfadump-internal.h143 void fadump_update_elfcore_header(char *bufp);