HomeSort by relevance Sort by last modified time
    Searched refs:isunordered (Results 51 - 58 of 58) sorted by null

1 23

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
math.h 404 # define isunordered(u, v) __builtin_isunordered(u, v) macro
420 !isunordered (__x, __y) && __x > __y; }))
428 !isunordered (__x, __y) && __x >= __y; }))
436 !isunordered (__x, __y) && __x < __y; }))
444 !isunordered (__x, __y) && __x <= __y; }))
452 !isunordered (__x, __y) && (__x < __y || __y < __x); }))
456 # ifndef isunordered
457 # define isunordered(u, v) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
math.h 404 # define isunordered(u, v) __builtin_isunordered(u, v) macro
420 !isunordered (__x, __y) && __x > __y; }))
428 !isunordered (__x, __y) && __x >= __y; }))
436 !isunordered (__x, __y) && __x < __y; }))
444 !isunordered (__x, __y) && __x <= __y; }))
452 !isunordered (__x, __y) && (__x < __y || __y < __x); }))
456 # ifndef isunordered
457 # define isunordered(u, v) \ macro
  /bionic/libm/include/
math.h 111 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro
113 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
114 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
115 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
116 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
117 #define islessgreater(x, y) (!isunordered((x), (y)) && \
119 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
  /external/qemu/fpu/
softfloat-native.h 52 #ifndef isunordered
53 #define isunordered(x, y) __builtin_isunordered(x, y) macro
63 #define isunordered(x,y) unordered(x, y) macro
248 return isunordered(a, b);
252 return isunordered(a, b);
370 return isunordered(a, b);
374 return isunordered(a, b);
487 return isunordered(a, b);
491 return isunordered(a, b);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 71 _LIBCPP_ALWAYS_INLINE bool isunordered( double x, double y ) function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 317 static_assert((std::is_same<decltype(isunordered((float)0, (float)0)), bool>::value), "");
318 static_assert((std::is_same<decltype(isunordered((float)0, (double)0)), bool>::value), "");
319 static_assert((std::is_same<decltype(isunordered((float)0, (long double)0)), bool>::value), "");
320 static_assert((std::is_same<decltype(isunordered((double)0, (float)0)), bool>::value), "");
321 static_assert((std::is_same<decltype(isunordered((double)0, (double)0)), bool>::value), "");
322 static_assert((std::is_same<decltype(isunordered((double)0, (long double)0)), bool>::value), "");
323 static_assert((std::is_same<decltype(isunordered((long double)0, (float)0)), bool>::value), "");
324 static_assert((std::is_same<decltype(isunordered((long double)0, (double)0)), bool>::value), "");
325 static_assert((std::is_same<decltype(isunordered((long double)0, (long double)0)), bool>::value), "");
326 assert(isunordered(-1.0, 0.F) == false)
    [all...]
  /external/clang/test/CodeGen/
builtins.c 62 P(isunordered, (1., 2.));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp     [all...]

Completed in 283 milliseconds

1 23