Lines Matching refs:__x
191 __typeof__(*(ptr)) __x = (x); \
198 (unsigned char *)&__x, \
203 (unsigned short *)&__x, \
208 (unsigned int *)&__x, \
213 (unsigned long *)&__x, \
317 unsigned char __x; \
319 __grc = __get_user_char(&__x, __guptr, sizeof(*(ptr))); \
320 (x) = *(__force __typeof__(*(ptr)) *)&__x; \
325 unsigned short __x; \
327 __grc = __get_user_short(&__x, __guptr, sizeof(*(ptr)));\
328 (x) = *(__force __typeof__(*(ptr)) *)&__x; \
333 unsigned int __x; \
335 __grc = __get_user_int(&__x, __guptr, sizeof(*(ptr))); \
336 (x) = *(__force __typeof__(*(ptr)) *)&__x; \
341 unsigned long __x; \
343 __grc = __get_user_long(&__x, __guptr, sizeof(*(ptr))); \
344 (x) = *(__force __typeof__(*(ptr)) *)&__x; \