Lines Matching refs:n
166 __arc_copy_from_user(void *to, const void __user *from, unsigned long n) in __arc_copy_from_user() argument
171 unsigned long orig_n = n; in __arc_copy_from_user()
173 if (n == 0) in __arc_copy_from_user()
197 : "+r" (n), in __arc_copy_from_user()
207 return n; in __arc_copy_from_user()
246 : "ir"(n) in __arc_copy_from_user()
383 : "=r" (res), "+r"(to), "+r"(from), "+r"(n), "=r"(val), in __arc_copy_from_user()
393 unsigned long n);
396 __arc_copy_to_user(void __user *to, const void *from, unsigned long n) in __arc_copy_to_user() argument
401 unsigned long orig_n = n; in __arc_copy_to_user()
403 if (n == 0) in __arc_copy_to_user()
427 : "+r" (n), in __arc_copy_to_user()
436 return n; in __arc_copy_to_user()
471 : "ir"(n) in __arc_copy_to_user()
608 : "=r" (res), "+r"(to), "+r"(from), "+r"(n), "=r"(val), in __arc_copy_to_user()
617 static inline unsigned long __arc_clear_user(void __user *to, unsigned long n) in __arc_clear_user() argument
619 long res = n; in __arc_clear_user()
692 static inline long __arc_strnlen_user(const char __user *s, long n) in __arc_strnlen_user() argument
716 : "0"(s), "1"(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
730 unsigned long n);
732 unsigned long n);
734 unsigned long n);
737 extern long arc_strnlen_user_noinline(const char __user *src, long n);
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