HomeSort by relevance Sort by last modified time
    Searched full:isnan (Results 151 - 175 of 503) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /external/qemu/fpu/
softfloat-native.h 36 #define unordered(x, y) (isnan(x) || isnan(y))
68 #ifndef isnan
69 # define isnan(x) \ macro
83 static inline int isinf_f (float x) { return isnan (x - x); }
84 static inline int isinf_d (double x) { return isnan (x - x); }
85 static inline int isinf_ld (long double x) { return isnan (x - x); }
  /external/stlport/src/
num_put_float.cpp 136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); }
173 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !isfinite(x); }
176 static bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
179 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && ! isnan(x); }
181 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && copysign(1., x) < 0 ; }
183 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !finite(x); }
187 static bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
198 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); }
173 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !isfinite(x); }
176 static bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
179 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && ! isnan(x); }
181 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && copysign(1., x) < 0 ; }
183 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !finite(x); }
187 static bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
198 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 118 return (Double.isNaN(m_val) || (m_val == 0.0)) ? false : true;
131 // if (Double.isNaN(m_val))
280 if (Double.isNaN(m_val))
  /external/chromium/net/proxy/
proxy_resolver_script.h 161 " if (isNaN(tmp)) {\n" \
178 " if (isNaN(tmp)) {\n" \
190 " if (isNaN(tmp)) {\n" \
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_float/
Test_double_to_float.java 78 assertTrue(Float.isNaN(t.run(Double.NaN)));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 80 assertTrue(Double.isNaN(t.run(Float.NaN)));
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java 838 if (!(Double.isNaN(bytes2double(bytes, buf.order())) && Double
839 .isNaN(value))) {
852 if (!(Double.isNaN(bytes2double(bytes, buf.order())) && Double
853 .isNaN(value))) {
901 if (!(Float.isNaN(bytes2float(bytes, buf.order())) && Float
902 .isNaN(value))) {
915 if (!(Float.isNaN(bytes2float(bytes, buf.order())) && Float
916 .isNaN(value))) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 60 if (Double.isNaN(start))
  /external/guava/guava-tests/test/com/google/common/math/
DoubleMathTest.java 384 boolean expected = x > 0 && !Double.isInfinite(x) && !Double.isNaN(x)
406 assertTrue(Double.isNaN(DoubleMath.log2(-d)));
417 assertTrue(Double.isNaN(DoubleMath.log2(Double.NEGATIVE_INFINITY)));
418 assertTrue(Double.isNaN(DoubleMath.log2(Double.NaN)));
  /external/icu4c/test/intltest/
tsputil.cpp 377 errln("FAIL: isNaN() returned FALSE for NaN.");
381 errln("FAIL: isNaN() returned TRUE for +Infinity.");
385 errln("FAIL: isNaN() returned TRUE for -Infinity.");
389 errln("FAIL: isNaN() returned TRUE for 10.0.");
  /external/proguard/src/proguard/gui/
default.pro 170 public static boolean isNaN(float);
176 public boolean isNaN();
184 public static boolean isNaN(double);
190 public boolean isNaN();
  /external/v8/test/mjsunit/
function-names.js 130 "URIError", "isNaN", "isFinite", "parseInt", "parseFloat",

Completed in 1802 milliseconds

1 2 3 4 5 67 8 91011>>