Lines Matching refs:__x
128 (__extension__ ({__typeof__(x) __x = (x); \
129 … (sizeof (__x) == sizeof (float)) ? __fpclassifyf(__x) : __fpclassifyd(__x);}))
138 (__extension__ ({__typeof__(x) __x = (x); \
139 (sizeof(__x) == sizeof(float)) ? __signbitf(__x) : __signbitd(__x);}))
142 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
143 !isunordered(__x,__y) && (__x > __y);}))
145 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
146 !isunordered(__x,__y) && (__x >= __y);}))
148 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
149 !isunordered(__x,__y) && (__x < __y);}))
151 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
152 !isunordered(__x,__y) && (__x <= __y);}))
154 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
155 !isunordered(__x,__y) && (__x < __y || __x > __y);}))