Lines Matching refs:vxrs
244 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user()
388 child->thread.fpu.vxrs + 2*offset) = data; in __poke_user()
622 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user_compat()
747 child->thread.fpu.vxrs + 2*offset) = tmp; in __poke_user_compat()
985 convert_fp_to_vx(target->thread.fpu.vxrs, fprs); in s390_fpregs_set()
1045 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_get() local
1053 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_get()
1054 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_get()
1062 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_set() local
1070 rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_set()
1073 *((__u64 *)(target->thread.fpu.vxrs + i) + 1) = vxrs[i]; in s390_vxrs_low_set()
1083 __vector128 vxrs[__NUM_VXRS_HIGH]; in s390_vxrs_high_get() local
1089 memcpy(vxrs, target->thread.fpu.vxrs + __NUM_VXRS_LOW, sizeof(vxrs)); in s390_vxrs_high_get()
1091 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_high_get()
1107 target->thread.fpu.vxrs + __NUM_VXRS_LOW, 0, -1); in s390_vxrs_high_set()