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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
Uint8ClampedArray.h 101 if (std::isnan(value) || value < 0)
  /external/chromium_org/third_party/sqlite/src/src/
util.c 38 ** Use the math library isnan() function if compiled with SQLITE_HAVE_ISNAN.
45 ** Systems that support the isnan() library function should probably
47 ** found that many systems do not have a working isnan() function so
74 rc = isnan(x);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBuffer.cpp 138 if (std::isnan(start)
186 if (std::isnan(end) || end <= m_appendWindowStart) {
254 if (start < 0 || (m_source && (std::isnan(m_source->duration()) || start > m_source->duration())) || end <= start) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
log.pass.cpp 70 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
72 assert(std::isnan(r.real()));
73 assert(std::isnan(r.imag()));
  /external/bison/darwin-lib/
math.h 2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
    [all...]
  /external/bison/lib/
math.in.h 2171 # undef isnan macro
2172 # define isnan macro
2186 # undef isnan macro
    [all...]
gnulib.mk 24 # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libbison --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=gnulib.mk --no-conditional-dependencies --no-libtool --macro-prefix=gl argmatch assert c-strcase calloc-posix close closeout config-h configmake dirname error extensions fdl fopen-safer fprintf-posix getline getopt-gnu gettext git-version-gen gitlog-to-changelog gpl-3.0 hash inttypes isnan javacomp-script javaexec-script ldexpl malloc-gnu mbschr mbsrchr mbswidth obstack obstack-printf perror printf-posix progname quote quotearg readme-release realloc-posix snprintf-posix spawn-pipe sprintf-posix stdbool stpcpy strdup-posix strerror strtoul strverscmp unistd unistd-safer unlocked-io unsetenv update-copyright verify vsnprintf-posix vsprintf-posix warnings xalloc xalloc-die xmemdup0 xstrndup
646 EXTRA_DIST += float+.h isnan.c isnand.c
648 EXTRA_libbison_a_SOURCES += isnan.c isnand.c
655 EXTRA_DIST += float+.h isnan.c isnand-nolibm.h isnand.c
657 EXTRA_libbison_a_SOURCES += isnan.c isnand.c
664 EXTRA_DIST += float+.h isnan.c isnanf.c
666 EXTRA_libbison_a_SOURCES += isnan.c isnanf.c
673 EXTRA_DIST += float+.h isnan.c isnanf-nolibm.h isnanf.c
675 EXTRA_libbison_a_SOURCES += isnan.c isnanf.c
682 EXTRA_DIST += float+.h isnan.c isnanl.
    [all...]
  /external/bison/linux-lib/
math.h 2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControlsChromium.cpp 215 if (std::isnan(duration) || std::isinf(duration) || !duration || std::isnan(currentTime))
221 if (std::isnan(start) || std::isnan(end) || start > currentTime || end < currentTime)
280 if (std::isnan(volume) || volume < 0)
  /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); }
  /bionic/libm/
fake_long_double.c 32 int __isnanl(long double a1) { return isnan(a1); }
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 110 if (!std::isnan(v) && !std::isinf(v)) {
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.cpp 61 if (!std::isnan(value) && !std::isinf(value))
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 76 #define sk_float_isnan(x) isnan(x)
  /external/skia/include/core/
SkFloatingPoint.h 76 #define sk_float_isnan(x) isnan(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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_float.pass.cpp 157 assert(std::isnan(v));
169 assert(std::isnan(v));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 180 if (std::isnan(x) || std::isinf(x)) {
220 if (std::isnan(numberValue) || std::isinf(numberValue) || !numberValue)
258 if (std::isnan(numberValue) || std::isinf(numberValue) || !numberValue)
285 if (std::isnan(numberValue) || std::isinf(numberValue))
322 if (std::isnan(numberValue) || std::isinf(numberValue))
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 22 inline bool isnan(double num) { return !!_isnan(num); } function in namespace:content::__anon10328
53 if (!(isnan(a.file_modification_time) && isnan(b.file_modification_time)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fractions.py 180 if math.isnan(f) or math.isinf(f):
535 if math.isnan(b) or math.isinf(b):
565 if math.isnan(other) or math.isinf(other):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fractions.py 180 if math.isnan(f) or math.isinf(f):
535 if math.isnan(b) or math.isinf(b):
565 if math.isnan(other) or math.isinf(other):
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Length.cpp 203 if (std::isnan(result))
  /external/stlport/stlport/stl/
_cmath.h 538 template<typename _Tp> inline int __capture_isnan(_Tp __f) { return isnan(__f); }
543 #undef isnan macro
548 template<typename _Tp> inline int isnan(_Tp __f) { return __capture_isnan(__f); } function in namespace:__captured
579 using __captured::isnan;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 538 template<typename _Tp> inline int __capture_isnan(_Tp __f) { return isnan(__f); }
543 #undef isnan macro
548 template<typename _Tp> inline int isnan(_Tp __f) { return __capture_isnan(__f); } function in namespace:__captured
579 using __captured::isnan;

Completed in 1369 milliseconds

1 2 3 4 5 67 8 91011>>