Lines Matching refs:vxrs
260 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user()
404 child->thread.fpu.vxrs + 2*offset) = data; in __poke_user()
636 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user_compat()
761 child->thread.fpu.vxrs + 2*offset) = tmp; in __poke_user_compat()
983 convert_vx_to_fp(fprs, target->thread.fpu.vxrs); in s390_fpregs_set()
1006 convert_fp_to_vx(target->thread.fpu.vxrs, fprs); in s390_fpregs_set()
1066 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_get() local
1074 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_get()
1075 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_get()
1083 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_set() local
1092 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_set()
1094 rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_set()
1097 *((__u64 *)(target->thread.fpu.vxrs + i) + 1) = vxrs[i]; in s390_vxrs_low_set()
1107 __vector128 vxrs[__NUM_VXRS_HIGH]; in s390_vxrs_high_get() local
1113 memcpy(vxrs, target->thread.fpu.vxrs + __NUM_VXRS_LOW, sizeof(vxrs)); in s390_vxrs_high_get()
1115 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_high_get()
1131 target->thread.fpu.vxrs + __NUM_VXRS_LOW, 0, -1); in s390_vxrs_high_set()