Lines Matching refs:pos
30 unsigned int pos, unsigned int count, in xfpregs_get() argument
41 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in xfpregs_get()
46 unsigned int pos, unsigned int count, in xfpregs_set() argument
58 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, in xfpregs_set()
77 unsigned int pos, unsigned int count, in xstateregs_get() argument
93 ret = copy_xstate_to_kernel(kbuf, xsave, pos, count); in xstateregs_get()
95 ret = copy_xstate_to_user(ubuf, xsave, pos, count); in xstateregs_get()
108 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_get()
114 unsigned int pos, unsigned int count, in xstateregs_set() argument
127 if ((pos != 0) || (count < fpu_user_xstate_size)) in xstateregs_set()
140 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_set()
296 unsigned int pos, unsigned int count, in fpregs_get() argument
305 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); in fpregs_get()
308 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in fpregs_get()
314 if (kbuf && pos == 0 && count == sizeof(env)) { in fpregs_get()
321 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_get()
325 unsigned int pos, unsigned int count, in fpregs_set() argument
336 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); in fpregs_set()
339 return user_regset_copyin(&pos, &count, &kbuf, &ubuf, in fpregs_set()
343 if (pos > 0 || count < sizeof(env)) in fpregs_set()
346 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_set()