Home
last modified time | relevance | path

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

/openbmc/linux/arch/powerpc/kernel/ptrace/
H A Dptrace-fpu.c12 unsigned int fpidx = index - PT_FPR0; in ptrace_get_fpr() local
20 if (fpidx < (PT_FPSCR - PT_FPR0)) { in ptrace_get_fpr()
23 *data = ((u32 *)child->thread.fp_state.fpr)[fpidx]; in ptrace_get_fpr()
25 memcpy(data, &child->thread.TS_FPR(fpidx), sizeof(long)); in ptrace_get_fpr()
38 unsigned int fpidx = index - PT_FPR0; in ptrace_put_fpr() local
46 if (fpidx < (PT_FPSCR - PT_FPR0)) { in ptrace_put_fpr()
49 ((u32 *)child->thread.fp_state.fpr)[fpidx] = data; in ptrace_put_fpr()
51 memcpy(&child->thread.TS_FPR(fpidx), &data, sizeof(long)); in ptrace_put_fpr()