Lines Matching refs:to

105 unsigned long __copy_from_user(void *to, const void __user *from, unsigned long n)  in __copy_from_user()  argument
108 return copy_from_user_mvcos(to, from, n); in __copy_from_user()
109 return copy_from_user_mvcp(to, from, n); in __copy_from_user()
178 unsigned long __copy_to_user(void __user *to, const void *from, unsigned long n) in __copy_to_user() argument
181 return copy_to_user_mvcos(to, from, n); in __copy_to_user()
182 return copy_to_user_mvcs(to, from, n); in __copy_to_user()
186 static inline unsigned long copy_in_user_mvcos(void __user *to, const void __user *from, in copy_in_user_mvcos() argument
204 : "+a" (size), "+a" (to), "+a" (from), "+a" (tmp1), "=a" (tmp2) in copy_in_user_mvcos()
209 static inline unsigned long copy_in_user_mvc(void __user *to, const void __user *from, in copy_in_user_mvc() argument
236 : "+a" (size), "+a" (to), "+a" (from), "=a" (tmp1) in copy_in_user_mvc()
241 unsigned long __copy_in_user(void __user *to, const void __user *from, unsigned long n) in __copy_in_user() argument
244 return copy_in_user_mvcos(to, from, n); in __copy_in_user()
245 return copy_in_user_mvc(to, from, n); in __copy_in_user()
249 static inline unsigned long clear_user_mvcos(void __user *to, unsigned long size) in clear_user_mvcos() argument
272 : "+a" (size), "+a" (to), "+a" (tmp1), "=a" (tmp2) in clear_user_mvcos()
277 static inline unsigned long clear_user_xc(void __user *to, unsigned long size) in clear_user_xc() argument
308 : "+a" (size), "+a" (to), "=a" (tmp1), "=a" (tmp2) in clear_user_xc()
313 unsigned long __clear_user(void __user *to, unsigned long size) in __clear_user() argument
316 return clear_user_mvcos(to, size); in __clear_user()
317 return clear_user_xc(to, size); in __clear_user()