Lines Matching defs:n
166 __arc_copy_from_user(void *to, const void __user *from, unsigned long n) in __arc_copy_from_user()
396 __arc_copy_to_user(void __user *to, const void *from, unsigned long n) in __arc_copy_to_user()
617 static inline unsigned long __arc_clear_user(void __user *to, unsigned long n) in __arc_clear_user()
692 static inline long __arc_strnlen_user(const char __user *s, long n) in __arc_strnlen_user()
723 #define __copy_from_user(t, f, n) __arc_copy_from_user(t, f, n) argument
724 #define __copy_to_user(t, f, n) __arc_copy_to_user(t, f, n) argument
725 #define __clear_user(d, n) __arc_clear_user(d, n) argument
726 #define __strncpy_from_user(d, s, n) __arc_strncpy_from_user(d, s, n) argument
727 #define __strnlen_user(s, n) __arc_strnlen_user(s, n) argument
739 #define __copy_from_user(t, f, n) arc_copy_from_user_noinline(t, f, n) argument
740 #define __copy_to_user(t, f, n) arc_copy_to_user_noinline(t, f, n) argument
741 #define __clear_user(d, n) arc_clear_user_noinline(d, n) argument
742 #define __strncpy_from_user(d, s, n) arc_strncpy_from_user_noinline(d, s, n) argument
743 #define __strnlen_user(s, n) arc_strnlen_user_noinline(s, n) argument