Lines Matching refs:pos
32 unsigned int pos, unsigned int count, in xfpregs_get() argument
43 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in xfpregs_get()
48 unsigned int pos, unsigned int count, in xfpregs_set() argument
60 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, in xfpregs_set()
79 unsigned int pos, unsigned int count, in xstateregs_get() argument
94 ret = copyout_from_xsaves(pos, count, kbuf, ubuf, xsave); in xstateregs_get()
107 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_get()
113 unsigned int pos, unsigned int count, in xstateregs_set() argument
126 if ((pos != 0) || (count < fpu_user_xstate_size)) in xstateregs_set()
136 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_set()
300 unsigned int pos, unsigned int count, in fpregs_get() argument
309 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); in fpregs_get()
312 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in fpregs_get()
318 if (kbuf && pos == 0 && count == sizeof(env)) { in fpregs_get()
325 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_get()
329 unsigned int pos, unsigned int count, in fpregs_set() argument
340 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); in fpregs_set()
343 return user_regset_copyin(&pos, &count, &kbuf, &ubuf, in fpregs_set()
347 if (pos > 0 || count < sizeof(env)) in fpregs_set()
350 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_set()