Lines Matching defs:to
53 * @to: Destination address, in user space.
54 * @n: Number of bytes to zero.
62 clear_user(void __user *to, unsigned long n)
65 if (access_ok(to, n))
66 __do_clear_user(to, n);
73 * @to: Destination address, in user space.
74 * @n: Number of bytes to zero.
83 __clear_user(void __user *to, unsigned long n)
85 __do_clear_user(to, n);
92 __copy_user_intel(void __user *to, const void *from, unsigned long size)
186 : "1"(to), "2"(from), "0"(size)
191 static unsigned long __copy_user_intel_nocache(void *to,
270 : "1"(to), "2"(from), "0"(size)
278 * Leave these declared but undefined. They should not be any references to
281 unsigned long __copy_user_intel(void __user *to, const void *from,
286 #define __copy_user(to, from, size) \
309 : "3"(size), "0"(size), "1"(to), "2"(from) \
313 unsigned long __copy_user_ll(void *to, const void *from, unsigned long n)
316 if (movsl_is_ok(to, from, n))
317 __copy_user(to, from, n);
319 n = __copy_user_intel(to, from, n);
325 unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *from,
331 n = __copy_user_intel_nocache(to, from, n);
333 __copy_user(to, from, n);
335 __copy_user(to, from, n);