Lines Matching refs:ret

29 	unsigned ret;  in copy_user_generic()  local
41 ASM_OUTPUT2("=a" (ret), "=D" (to), "=S" (from), in copy_user_generic()
45 return ret; in copy_user_generic()
54 int ret = 0; in __copy_from_user_nocheck() local
60 ret, "b", "b", "=q", 1); in __copy_from_user_nocheck()
61 return ret; in __copy_from_user_nocheck()
63 ret, "w", "w", "=r", 2); in __copy_from_user_nocheck()
64 return ret; in __copy_from_user_nocheck()
66 ret, "l", "k", "=r", 4); in __copy_from_user_nocheck()
67 return ret; in __copy_from_user_nocheck()
69 ret, "q", "", "=r", 8); in __copy_from_user_nocheck()
70 return ret; in __copy_from_user_nocheck()
73 ret, "q", "", "=r", 10); in __copy_from_user_nocheck()
74 if (unlikely(ret)) in __copy_from_user_nocheck()
75 return ret; in __copy_from_user_nocheck()
78 ret, "w", "w", "=r", 2); in __copy_from_user_nocheck()
79 return ret; in __copy_from_user_nocheck()
82 ret, "q", "", "=r", 16); in __copy_from_user_nocheck()
83 if (unlikely(ret)) in __copy_from_user_nocheck()
84 return ret; in __copy_from_user_nocheck()
87 ret, "q", "", "=r", 8); in __copy_from_user_nocheck()
88 return ret; in __copy_from_user_nocheck()
104 int ret = 0; in __copy_to_user_nocheck() local
110 ret, "b", "b", "iq", 1); in __copy_to_user_nocheck()
111 return ret; in __copy_to_user_nocheck()
113 ret, "w", "w", "ir", 2); in __copy_to_user_nocheck()
114 return ret; in __copy_to_user_nocheck()
116 ret, "l", "k", "ir", 4); in __copy_to_user_nocheck()
117 return ret; in __copy_to_user_nocheck()
119 ret, "q", "", "er", 8); in __copy_to_user_nocheck()
120 return ret; in __copy_to_user_nocheck()
123 ret, "q", "", "er", 10); in __copy_to_user_nocheck()
124 if (unlikely(ret)) in __copy_to_user_nocheck()
125 return ret; in __copy_to_user_nocheck()
128 ret, "w", "w", "ir", 2); in __copy_to_user_nocheck()
129 return ret; in __copy_to_user_nocheck()
132 ret, "q", "", "er", 16); in __copy_to_user_nocheck()
133 if (unlikely(ret)) in __copy_to_user_nocheck()
134 return ret; in __copy_to_user_nocheck()
137 ret, "q", "", "er", 8); in __copy_to_user_nocheck()
138 return ret; in __copy_to_user_nocheck()
154 int ret = 0; in __copy_in_user() local
164 ret, "b", "b", "=q", 1); in __copy_in_user()
165 if (likely(!ret)) in __copy_in_user()
167 ret, "b", "b", "iq", 1); in __copy_in_user()
168 return ret; in __copy_in_user()
173 ret, "w", "w", "=r", 2); in __copy_in_user()
174 if (likely(!ret)) in __copy_in_user()
176 ret, "w", "w", "ir", 2); in __copy_in_user()
177 return ret; in __copy_in_user()
183 ret, "l", "k", "=r", 4); in __copy_in_user()
184 if (likely(!ret)) in __copy_in_user()
186 ret, "l", "k", "ir", 4); in __copy_in_user()
187 return ret; in __copy_in_user()
192 ret, "q", "", "=r", 8); in __copy_in_user()
193 if (likely(!ret)) in __copy_in_user()
195 ret, "q", "", "er", 8); in __copy_in_user()
196 return ret; in __copy_in_user()