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

1 23

  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
math.h 119 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /external/qemu/fpu/
softfloat-native.c 242 } else if (isgreater(a, b)) {
405 } else if (isgreater(a, b)) {
507 } else if (isgreater(a, b)) {
softfloat-native.h 40 #ifndef isgreater
41 #define isgreater(x, y) __builtin_isgreater(x, y) macro
59 #define isgreater(x, y) ((!unordered(x, y)) && ((x) > (y))) macro
  /bionic/libm/include/
math.h 106 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
113 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro
  /external/clang/test/CodeGen/
builtins.c 57 P(isgreater, (1., 2.));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp 503 #ifdef isgreater
504 #error isgreater defined
506 static_assert((std::is_same<decltype(std::isgreater((float)0, (float)0)), bool>::value), "");
507 static_assert((std::is_same<decltype(std::isgreater((float)0, (double)0)), bool>::value), "");
508 static_assert((std::is_same<decltype(std::isgreater((float)0, (long double)0)), bool>::value), "");
509 static_assert((std::is_same<decltype(std::isgreater((double)0, (float)0)), bool>::value), "");
510 static_assert((std::is_same<decltype(std::isgreater((double)0, (double)0)), bool>::value), "");
511 static_assert((std::is_same<decltype(std::isgreater(0, (double)0)), bool>::value), "");
512 static_assert((std::is_same<decltype(std::isgreater((double)0, (long double)0)), bool>::value), "");
513 static_assert((std::is_same<decltype(std::isgreater((long double)0, (float)0)), bool>::value), "")
    [all...]

Completed in 2638 milliseconds

1 23