Lines Matching refs:n
14 (void __user *to, const void *from, unsigned long n);
16 (void *to, const void __user *from, unsigned long n);
18 (void *to, const void __user *from, unsigned long n);
20 (void *to, const void __user *from, unsigned long n);
22 (void *to, const void __user *from, unsigned long n);
44 __copy_to_user_inatomic(void __user *to, const void *from, unsigned long n) in __copy_to_user_inatomic() argument
46 if (__builtin_constant_p(n)) { in __copy_to_user_inatomic()
49 switch (n) { in __copy_to_user_inatomic()
64 return __copy_to_user_ll(to, from, n); in __copy_to_user_inatomic()
82 __copy_to_user(void __user *to, const void *from, unsigned long n) in __copy_to_user() argument
85 return __copy_to_user_inatomic(to, from, n); in __copy_to_user()
89 __copy_from_user_inatomic(void *to, const void __user *from, unsigned long n) in __copy_from_user_inatomic() argument
96 if (__builtin_constant_p(n)) { in __copy_from_user_inatomic()
99 switch (n) { in __copy_from_user_inatomic()
111 return __copy_from_user_ll_nozero(to, from, n); in __copy_from_user_inatomic()
137 __copy_from_user(void *to, const void __user *from, unsigned long n) in __copy_from_user() argument
140 if (__builtin_constant_p(n)) { in __copy_from_user()
143 switch (n) { in __copy_from_user()
155 return __copy_from_user_ll(to, from, n); in __copy_from_user()
159 const void __user *from, unsigned long n) in __copy_from_user_nocache() argument
162 if (__builtin_constant_p(n)) { in __copy_from_user_nocache()
165 switch (n) { in __copy_from_user_nocache()
177 return __copy_from_user_ll_nocache(to, from, n); in __copy_from_user_nocache()
182 unsigned long n) in __copy_from_user_inatomic_nocache() argument
184 return __copy_from_user_ll_nocache_nozero(to, from, n); in __copy_from_user_inatomic_nocache()