Lines Matching refs:__ret
155 int __ret = 0; \
161 __ret = linux_wait_event_common(&(wqh), &__wq, \
163 if (__ret != 0) \
168 if (__ret == -EWOULDBLOCK) \
169 __ret = !!(cond); \
170 else if (__ret != -ERESTARTSYS) { \
171 __ret = __timeout + __start - ticks; \
173 if (__ret < 1) \
174 __ret = 1; \
175 else if (__ret > __timeout) \
176 __ret = __timeout; \
179 __ret; \
211 int __ret; \
214 __ret = __wait_event_common(wqh, cond, MAX_SCHEDULE_TIMEOUT, \
217 __ret; \