Lines Matching refs:n
71 unsigned long n);
73 unsigned long n);
75 #define __copy_from_user(to, from, n) __copy_from_user_hexagon(to, from, n) argument
76 #define __copy_to_user(to, from, n) __copy_to_user_hexagon(to, from, n) argument
87 #define __strncpy_from_user(dst, src, n) hexagon_strncpy_from_user(dst, src, n) argument
92 extern long __strnlen_user(const char __user *src, long n);
95 long n);
101 long n) in hexagon_strncpy_from_user() argument
103 long res = __strnlen_user(src, n); in hexagon_strncpy_from_user()
107 if (res > n) { in hexagon_strncpy_from_user()
108 copy_from_user(dst, src, n); in hexagon_strncpy_from_user()
109 return n; in hexagon_strncpy_from_user()