HomeSort by relevance Sort by last modified time
    Searched defs:isinf (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/vulkan-validation-layers/libs/glm/detail/
_fixes.hpp 47 #ifdef isinf
48 #undef isinf macro
  /external/v8/src/base/
qnx-math.h 12 #undef isinf macro
  /external/libcxx/include/support/win32/
math_win32.h 31 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /external/libxml2/include/
win32config.h 51 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
53 #ifndef isinf
54 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
62 #ifndef isinf
63 static int isinf (double d) { function
  /external/libxml2/win32/VC10/
config.h 50 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
52 #ifndef isinf
53 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
61 #ifndef isinf
62 static int isinf (double d) { function
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 388 return (std::isinf)(x);
449 inline bool (isinf)(T x) function in namespace:boost::math
  /external/protobuf/python/google/protobuf/internal/
generator_test.py 86 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
91 def isinf(val): function in function:GeneratorTest.testExtremeDefaultValues
95 self.assertTrue(isinf(message.inf_double))
97 self.assertTrue(isinf(message.neg_inf_double))
101 self.assertTrue(isinf(message.inf_float))
103 self.assertTrue(isinf(message.neg_inf_float))
message_test.py 58 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
63 def isinf(val): function
67 return isinf(val) and (val > 0)
69 return isinf(val) and (val < 0)
  /bionic/libm/include/
math.h 67 #define isinf(x) __builtin_isinf(x) macro
189 int (isinf)(double) __pure2;
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 36 #undef isinf macro
37 #define isinf(x) (fabs(x) == INFINITY) macro
288 if (isinf(x))
291 if (isinf(y))
372 if (isinf(x))
375 if (isinf(y))
541 if (ix - iy >= CUTOFF << 20 || isinf(x))
586 if (isinf(x))
589 if (isinf(y))
catrigf.c 50 #undef isinf macro
51 #define isinf(x) (fabsf(x) == INFINITY) macro
158 if (isinf(x))
160 if (isinf(y))
216 if (isinf(x))
218 if (isinf(y))
326 if (ix - iy >= CUTOFF << 23 || isinf(x))
355 if (isinf(x))
357 if (isinf(y))
  /development/ndk/platforms/android-13/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /development/ndk/platforms/android-18/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /development/ndk/platforms/android-21/include/
math.h 94 #define isinf(x) \ macro
96 : (sizeof (x) == sizeof (double)) ? isinf(x) \
234 int (isinf)(double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-3/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /development/ndk/platforms/android-9/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 537 template<typename _Tp> inline int __capture_isinf(_Tp __f) { return isinf(__f); }
542 #undef isinf macro
547 template<typename _Tp> inline int isinf(_Tp __f) { return __capture_isinf(__f); } function in namespace:__captured
578 using __captured::isinf;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __NDK_FPABI_MATH__ __pure2; */

Completed in 874 milliseconds

1 2 3 4