Lines Matching refs:res
33 #define __do_strncpy_from_user(dst, src, count, res) \ argument
63 :"=&r"(res), "=r"(count), "=&r"(w) \
71 long res; in __strncpy_from_user() local
72 __do_strncpy_from_user(dst, src, count, res); in __strncpy_from_user()
73 return res; in __strncpy_from_user()
79 long res = -EFAULT; in strncpy_from_user() local
81 __do_strncpy_from_user(dst, src, count, res); in strncpy_from_user()
82 return res; in strncpy_from_user()
137 unsigned long res, w; in strnlen_user() local
162 :"=d"(res), "=&r"(w) in strnlen_user()
165 return res; in strnlen_user()