Lines Matching refs:to
67 clear_user(void __user *to, unsigned long n) in clear_user() argument
70 if (access_ok(to, n)) in clear_user()
71 __do_clear_user(to, n); in clear_user()
88 __clear_user(void __user *to, unsigned long n) in __clear_user() argument
90 __do_clear_user(to, n); in __clear_user()
97 __copy_user_intel(void __user *to, const void *from, unsigned long size) in __copy_user_intel() argument
195 : "1"(to), "2"(from), "0"(size) in __copy_user_intel()
200 static unsigned long __copy_user_intel_nocache(void *to, in __copy_user_intel_nocache() argument
283 : "1"(to), "2"(from), "0"(size) in __copy_user_intel_nocache()
294 unsigned long __copy_user_intel(void __user *to, const void *from,
299 #define __copy_user(to, from, size) \ argument
328 : "3"(size), "0"(size), "1"(to), "2"(from) \
332 unsigned long __copy_user_ll(void *to, const void *from, unsigned long n) in __copy_user_ll() argument
335 if (movsl_is_ok(to, from, n)) in __copy_user_ll()
336 __copy_user(to, from, n); in __copy_user_ll()
338 n = __copy_user_intel(to, from, n); in __copy_user_ll()
344 unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *from, in __copy_from_user_ll_nocache_nozero() argument
350 n = __copy_user_intel_nocache(to, from, n); in __copy_from_user_ll_nocache_nozero()
352 __copy_user(to, from, n); in __copy_from_user_ll_nocache_nozero()
354 __copy_user(to, from, n); in __copy_from_user_ll_nocache_nozero()