Searched refs:fpval (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/arch/ia64/kernel/ |
D | ptrace.c | 826 struct ia64_fpreg fpval; in ptrace_getregs() local 924 if (unw_get_fr(&info, i, &fpval) < 0) in ptrace_getregs() 926 retval |= __copy_to_user(&ppr->fr[i], &fpval, sizeof (fpval)); in ptrace_getregs() 942 if (unw_get_fr(&info, i, &fpval) < 0) in ptrace_getregs() 944 retval |= __copy_to_user(&ppr->fr[i], &fpval, sizeof (fpval)); in ptrace_getregs() 971 struct ia64_fpreg fpval; in ptrace_setregs() local 976 memset(&fpval, 0, sizeof(fpval)); in ptrace_setregs() 1060 retval |= __copy_from_user(&fpval, &ppr->fr[i], sizeof(fpval)); in ptrace_setregs() 1061 if (unw_set_fr(&info, i, fpval) < 0) in ptrace_setregs() 1078 retval |= __copy_from_user(&fpval, &ppr->fr[i], in ptrace_setregs() [all …]
|
D | unaligned.c | 517 setfpreg (unsigned long regnum, struct ia64_fpreg *fpval, struct pt_regs *regs) in setfpreg() argument 535 current->thread.fph[fph_index(regs, regnum)] = *fpval; in setfpreg() 549 *(struct ia64_fpreg *)addr = *fpval; in setfpreg() 578 getfpreg (unsigned long regnum, struct ia64_fpreg *fpval, struct pt_regs *regs) in getfpreg() argument 594 *fpval = current->thread.fph[fph_index(regs, regnum)]; in getfpreg() 602 float_spill_f0(fpval); in getfpreg() 605 float_spill_f1(fpval); in getfpreg() 618 *fpval = *(struct ia64_fpreg *)addr; in getfpreg()
|