Lines Matching refs:vxrs
260 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user()
430 child->thread.fpu.vxrs + 2*offset) = data; in __poke_user()
660 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user_compat()
790 child->thread.fpu.vxrs + 2*offset) = tmp; in __poke_user_compat()
1013 convert_vx_to_fp(fprs, target->thread.fpu.vxrs); in s390_fpregs_set()
1036 convert_fp_to_vx(target->thread.fpu.vxrs, fprs); in s390_fpregs_set()
1096 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_get() local
1104 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_get()
1105 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_get()
1113 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_set() local
1122 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_set()
1124 rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_set()
1127 *((__u64 *)(target->thread.fpu.vxrs + i) + 1) = vxrs[i]; in s390_vxrs_low_set()
1137 __vector128 vxrs[__NUM_VXRS_HIGH]; in s390_vxrs_high_get() local
1143 memcpy(vxrs, target->thread.fpu.vxrs + __NUM_VXRS_LOW, sizeof(vxrs)); in s390_vxrs_high_get()
1145 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_high_get()
1161 target->thread.fpu.vxrs + __NUM_VXRS_LOW, 0, -1); in s390_vxrs_high_set()