HomeSort by relevance Sort by last modified time
    Searched defs:isunordered (Results 76 - 80 of 80) sorted by null

1 2 34

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
math.h 124 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
130 #define islessgreater(x, y) (!isunordered((x), (y)) && \
132 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
math.h 124 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
130 #define islessgreater(x, y) (!isunordered((x), (y)) && \
132 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
math.h 415 # define isunordered(u, v) __builtin_isunordered(u, v) macro
431 !isunordered (__x, __y) && __x > __y; }))
439 !isunordered (__x, __y) && __x >= __y; }))
447 !isunordered (__x, __y) && __x < __y; }))
455 !isunordered (__x, __y) && __x <= __y; }))
463 !isunordered (__x, __y) && (__x < __y || __y < __x); }))
467 # ifndef isunordered
468 # define isunordered(u, v) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
math.h 415 # define isunordered(u, v) __builtin_isunordered(u, v) macro
431 !isunordered (__x, __y) && __x > __y; }))
439 !isunordered (__x, __y) && __x >= __y; }))
447 !isunordered (__x, __y) && __x < __y; }))
455 !isunordered (__x, __y) && __x <= __y; }))
463 !isunordered (__x, __y) && (__x < __y || __y < __x); }))
467 # ifndef isunordered
468 # define isunordered(u, v) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 994 #define isunordered(x, y) __builtin_isunordered(x, y) macro
1013 #define isunordered(x, y) ((__fp_unordered_compare(x, y) & 0x4500) == 0x4500) macro

Completed in 1012 milliseconds

1 2 34