Lines Matching refs:__x
24 ({ __typeof(x) __x; \
27 __asm ("" : "=x" (__x) : "0" (x)); \
29 __asm ("" : "=t" (__x) : "0" (x)); \
30 __x; })
41 ({ __typeof (x) __x; \
44 __x = (x); \
45 __asm ("" : "+m" (__x)); \
48 __asm ("" : "=t" (__x) : "0" (x)); \
49 __x; })
52 __typeof (x) __x = (x); \
55 __asm __volatile ("" : : "m" (__x)); \
57 __asm __volatile ("" : : "f" (__x)); \