Lines Matching defs:n
173 __arc_copy_from_user(void *to, const void __user *from, unsigned long n) in __arc_copy_from_user()
403 __arc_copy_to_user(void __user *to, const void *from, unsigned long n) in __arc_copy_to_user()
624 static inline unsigned long __arc_clear_user(void __user *to, unsigned long n) in __arc_clear_user()
699 static inline long __arc_strnlen_user(const char __user *s, long n) in __arc_strnlen_user()
730 #define __copy_from_user(t, f, n) __arc_copy_from_user(t, f, n) argument
731 #define __copy_to_user(t, f, n) __arc_copy_to_user(t, f, n) argument
732 #define __clear_user(d, n) __arc_clear_user(d, n) argument
733 #define __strncpy_from_user(d, s, n) __arc_strncpy_from_user(d, s, n) argument
734 #define __strnlen_user(s, n) __arc_strnlen_user(s, n) argument
746 #define __copy_from_user(t, f, n) arc_copy_from_user_noinline(t, f, n) argument
747 #define __copy_to_user(t, f, n) arc_copy_to_user_noinline(t, f, n) argument
748 #define __clear_user(d, n) arc_clear_user_noinline(d, n) argument
749 #define __strncpy_from_user(d, s, n) arc_strncpy_from_user_noinline(d, s, n) argument
750 #define __strnlen_user(s, n) arc_strnlen_user_noinline(s, n) argument