Lines Matching refs:to
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
51 __put_user_size(*(u8 *)from, (u8 __user *)to, in __copy_to_user_inatomic()
55 __put_user_size(*(u16 *)from, (u16 __user *)to, in __copy_to_user_inatomic()
59 __put_user_size(*(u32 *)from, (u32 __user *)to, in __copy_to_user_inatomic()
63 __put_user_size(*(u64 *)from, (u64 __user *)to, in __copy_to_user_inatomic()
68 return __copy_to_user_ll(to, from, n); in __copy_to_user_inatomic()
87 __copy_to_user(void __user *to, const void *from, unsigned long n) in __copy_to_user() argument
90 return __copy_to_user_inatomic(to, from, n); in __copy_to_user()
94 __copy_from_user_inatomic(void *to, const void __user *from, unsigned long n) in __copy_from_user_inatomic() argument
106 __get_user_size(*(u8 *)to, from, 1, ret, 1); in __copy_from_user_inatomic()
109 __get_user_size(*(u16 *)to, from, 2, ret, 2); in __copy_from_user_inatomic()
112 __get_user_size(*(u32 *)to, from, 4, ret, 4); in __copy_from_user_inatomic()
116 return __copy_from_user_ll_nozero(to, from, n); in __copy_from_user_inatomic()
143 __copy_from_user(void *to, const void __user *from, unsigned long n) in __copy_from_user() argument
151 __get_user_size(*(u8 *)to, from, 1, ret, 1); in __copy_from_user()
154 __get_user_size(*(u16 *)to, from, 2, ret, 2); in __copy_from_user()
157 __get_user_size(*(u32 *)to, from, 4, ret, 4); in __copy_from_user()
161 return __copy_from_user_ll(to, from, n); in __copy_from_user()
164 static __always_inline unsigned long __copy_from_user_nocache(void *to, in __copy_from_user_nocache() argument
173 __get_user_size(*(u8 *)to, from, 1, ret, 1); in __copy_from_user_nocache()
176 __get_user_size(*(u16 *)to, from, 2, ret, 2); in __copy_from_user_nocache()
179 __get_user_size(*(u32 *)to, from, 4, ret, 4); in __copy_from_user_nocache()
183 return __copy_from_user_ll_nocache(to, from, n); in __copy_from_user_nocache()
187 __copy_from_user_inatomic_nocache(void *to, const void __user *from, in __copy_from_user_inatomic_nocache() argument
190 return __copy_from_user_ll_nocache_nozero(to, from, n); in __copy_from_user_inatomic_nocache()