Lines Matching refs:vxrs
261 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user()
405 child->thread.fpu.vxrs + 2*offset) = data; in __poke_user()
637 ((addr_t) child->thread.fpu.vxrs + 2*offset); in __peek_user_compat()
762 child->thread.fpu.vxrs + 2*offset) = tmp; in __poke_user_compat()
984 convert_vx_to_fp(fprs, target->thread.fpu.vxrs); in s390_fpregs_set()
1007 convert_fp_to_vx(target->thread.fpu.vxrs, fprs); in s390_fpregs_set()
1067 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_get() local
1075 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_get()
1076 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_get()
1084 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_set() local
1093 vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1); in s390_vxrs_low_set()
1095 rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_set()
1098 *((__u64 *)(target->thread.fpu.vxrs + i) + 1) = vxrs[i]; in s390_vxrs_low_set()
1108 __vector128 vxrs[__NUM_VXRS_HIGH]; in s390_vxrs_high_get() local
1114 memcpy(vxrs, target->thread.fpu.vxrs + __NUM_VXRS_LOW, sizeof(vxrs)); in s390_vxrs_high_get()
1116 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_high_get()
1132 target->thread.fpu.vxrs + __NUM_VXRS_LOW, 0, -1); in s390_vxrs_high_set()