Lines Matching refs:contents

86     } contents;  member
98 regs = &(note->contents.prstatus.regs); in s390x_write_elf64_prstatus()
105 note->contents.prstatus.pid = cpu_to_be32(id); in s390x_write_elf64_prstatus()
114 note->contents.fpregset.fpc = cpu_to_be32(cpu->env.fpc); in s390x_write_elf64_fpregset()
116 note->contents.fpregset.fprs[i] = cpu_to_be64(*get_freg(cs, i)); in s390x_write_elf64_fpregset()
126 note->contents.vregslo.vregs[i] = cpu_to_be64(cpu->env.vregs[i][1]); in s390x_write_elf64_vregslo()
135 temp_vregshi = &note->contents.vregshi; in s390x_write_elf64_vregshi()
150 note->contents.gscb.gsregs[i] = cpu_to_be64(cpu->env.gscb[i]); in s390x_write_elf64_gscb()
157 note->contents.timer = cpu_to_be64((uint64_t)(cpu->env.cputm)); in s390x_write_elf64_timer()
163 note->contents.todcmp = cpu_to_be64((uint64_t)(cpu->env.ckc)); in s390x_write_elf64_todcmp()
169 note->contents.todpreg = cpu_to_be32((uint32_t)(cpu->env.todpr)); in s390x_write_elf64_todpreg()
179 note->contents.ctrs[i] = cpu_to_be64(cpu->env.cregs[i]); in s390x_write_elf64_ctrs()
186 note->contents.prefix = cpu_to_be32((uint32_t)(cpu->env.psa)); in s390x_write_elf64_prefix()
195 kvm_s390_dump_cpu(cpu, &note->contents.dynamic); in s390x_write_elf64_pv()
206 {sizeof_field(Note, contents.prstatus), NULL, s390x_write_elf64_prstatus, false},
207 {sizeof_field(Note, contents.fpregset), NULL, s390x_write_elf64_fpregset, false},
212 {sizeof_field(Note, contents.prefix), NULL, s390x_write_elf64_prefix, false},
213 {sizeof_field(Note, contents.ctrs), NULL, s390x_write_elf64_ctrs, false},
214 {sizeof_field(Note, contents.timer), NULL, s390x_write_elf64_timer, false},
215 {sizeof_field(Note, contents.todcmp), NULL, s390x_write_elf64_todcmp, false},
216 {sizeof_field(Note, contents.todpreg), NULL, s390x_write_elf64_todpreg, false},
217 {sizeof_field(Note, contents.vregslo), NULL, s390x_write_elf64_vregslo, false},
218 {sizeof_field(Note, contents.vregshi), NULL, s390x_write_elf64_vregshi, false},
219 {sizeof_field(Note, contents.gscb), NULL, s390x_write_elf64_gscb, false},
243 note_size = sizeof(Note) - sizeof(notep->contents) + content_size; in s390x_write_elf64_notes()