Lines Matching refs:from
34 * Prevent a mispredicted conditional call to set_fs from forwarding
87 // comes from the carry in being clear. Otherwise, we are
99 #define _ASM_EXTABLE(from, to) \
102 " .long (" #from " - .), (" #to " - .)\n" \
384 extern unsigned long __must_check __arch_copy_from_user(void *to, const void __user *from, unsigned long n);
385 #define raw_copy_from_user(to, from, n) \
390 __uaccess_mask_ptr(from), (n)); \
395 extern unsigned long __must_check __arch_copy_to_user(void __user *to, const void *from, unsigned long n);
396 #define raw_copy_to_user(to, from, n) \
401 (from), (n)); \
406 extern unsigned long __must_check __arch_copy_in_user(void __user *to, const void __user *from, unsigned long n);
407 #define raw_copy_in_user(to, from, n) \
412 __uaccess_mask_ptr(from), (n)); \
439 extern unsigned long __must_check __copy_user_flushcache(void *to, const void __user *from, unsigned long n);