Lines Matching refs:from
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()