Lines Matching refs:to
13 unsigned copy_to_user(void *to, const void *from, unsigned len);
14 unsigned clear_user(void *to, unsigned len);
15 unsigned copy_from_user(void *to, const void *from, unsigned len);
17 unsigned __copy_to_user_ll(void __user*to, const void *from, unsigned n);
18 unsigned __copy_from_user_ll(void *to, const void __user *from, unsigned n);
189 __copy_to_user(void __user *to, const void *from, unsigned long n) in __copy_to_user() argument
196 __put_user_size(*(const u8 *)from, (u8 __user *)to, 1, ret, 1); in __copy_to_user()
199 __put_user_size(*(const u16 *)from, (u16 __user *)to, 2, ret, 2); in __copy_to_user()
202 __put_user_size(*(const u32 *)from, (u32 __user *)to, 4, ret, 4); in __copy_to_user()
205 __put_user_size(*(const u64 *)from, (u64 __user *)to, 8, ret, 8); in __copy_to_user()
209 return __copy_to_user_ll(to, from, n); in __copy_to_user()
230 __copy_from_user(void *to, const void __user *from, unsigned long n) in __copy_from_user() argument
237 __get_user_size(*(u8 *)to, from, 1, ret, 1); in __copy_from_user()
240 __get_user_size(*(u16 *)to, from, 2, ret, 2); in __copy_from_user()
243 __get_user_size(*(u32 *)to, from, 4, ret, 4); in __copy_from_user()
246 __get_user_size(*(u64*)to, from, 8, ret, 8); in __copy_from_user()
250 return __copy_from_user_ll(to, from, n); in __copy_from_user()