Lines Matching refs:__x
173 (__extension__ ({__typeof__(x) __x = (x); \
174 … (sizeof (__x) == sizeof (float)) ? __fpclassifyf(__x) : __fpclassifyd(__x);}))
189 (__extension__ ({__typeof__(x) __x = (x); \
190 (sizeof (__x) == sizeof (float)) ? __isinff(__x) : __isinfd(__x);}))
195 (__extension__ ({__typeof__(x) __x = (x); \
196 (sizeof (__x) == sizeof (float)) ? __isnanf(__x) : __isnand(__x);}))
201 (__extension__ ({__typeof__(x) __x = (x); \
202 (sizeof(__x) == sizeof(float)) ? __signbitf(__x) : __signbitd(__x);}))
205 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
206 !isunordered(__x,__y) && (__x > __y);}))
208 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
209 !isunordered(__x,__y) && (__x >= __y);}))
211 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
212 !isunordered(__x,__y) && (__x < __y);}))
214 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
215 !isunordered(__x,__y) && (__x <= __y);}))
217 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
218 !isunordered(__x,__y) && (__x < __y || __x > __y);}))