Lines Matching refs:pos
28 unsigned int pos, unsigned int count, in xfpregs_get() argument
39 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in xfpregs_get()
44 unsigned int pos, unsigned int count, in xfpregs_set() argument
56 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, in xfpregs_set()
75 unsigned int pos, unsigned int count, in xstateregs_get() argument
99 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_get()
104 unsigned int pos, unsigned int count, in xstateregs_set() argument
118 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); in xstateregs_set()
270 unsigned int pos, unsigned int count, in fpregs_get() argument
279 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); in fpregs_get()
282 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, in fpregs_get()
288 if (kbuf && pos == 0 && count == sizeof(env)) { in fpregs_get()
295 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_get()
299 unsigned int pos, unsigned int count, in fpregs_set() argument
310 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); in fpregs_set()
313 return user_regset_copyin(&pos, &count, &kbuf, &ubuf, in fpregs_set()
317 if (pos > 0 || count < sizeof(env)) in fpregs_set()
320 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1); in fpregs_set()