Lines Matching refs:__x
105 extern float __nldbl_nexttowardf (float __x, long double __y)
108 extern float __REDIRECT_NTH (nexttowardf, (float __x, long double __y),
111 extern double __REDIRECT_NTH (nexttoward, (double __x, long double __y),
114 (long double __x, long double __y),
419 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \
420 !isunordered (__x, __y) && __x > __y; }))
427 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \
428 !isunordered (__x, __y) && __x >= __y; }))
435 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \
436 !isunordered (__x, __y) && __x < __y; }))
443 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \
444 !isunordered (__x, __y) && __x <= __y; }))
451 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \
452 !isunordered (__x, __y) && (__x < __y || __y < __x); }))