Searched refs:isnan (Results 76 - 100 of 157) sorted by relevance

1234567

/external/opencv3/modules/photo/src/
H A Dfast_nlmeans_denoising_invoker_commons.hpp47 // std::isnan is a part of C++11 and it is not supported in MSVS2010/2012
51 template <typename T> bool isnan(T value) { return _isnan(value) != 0; } function in namespace:std
138 if (std::isnan(w)) w = 1.0; // Handle h = 0.0
260 if (std::isnan(w)) w = 1.0; // Handle h = 0.0
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dadd_point.py220 if not (math.isnan(specific_vals['value']) or
221 math.isnan(specific_vals['error'])):
H A Dstats.py384 if math.isnan(before) or math.isnan(after):
/external/libxml2/
H A Dtrionan.c375 #if (defined(TRIO_COMPILER_SUPPORTS_C99) && defined(isnan)) \
378 * C99 defines isnan() as a macro. UNIX95 defines isnan() as a
383 return isnan(number);
/external/v8/test/cctest/
H A Dtest-utils-arm64.cc65 if (std::isnan(expected) || (expected == 0.0)) {
84 if (std::isnan(expected) || (expected == 0.0)) {
/external/vixl/test/
H A Dtest-utils-a64.cc88 if (std::isnan(expected) || (expected == 0.0)) {
107 if (std::isnan(expected) || (expected == 0.0)) {
/external/v8/src/
H A Dbuiltins.cc171 if (std::isnan(value)) {
2139 if (!std::isnan(date)) {
2155 if (std::isnan(time_val)) {
2278 if (!std::isnan(year)) {
2367 if (!std::isnan(year)) {
2384 if (!std::isnan(time_val)) {
2406 if (!std::isnan(date->value()->Number())) {
2440 if (!std::isnan(time_val)) {
2476 if (!std::isnan(time_val)) {
2498 if (!std::isnan(time_va
[all...]
H A Dcodegen.cc27 if (!(std::isfinite(x) && (!std::isfinite(y) && !std::isnan(y))) &&
/external/autotest/client/site_tests/graphics_WebGLAquarium/
H A Dgraphics_WebGLAquarium.py127 if math.isnan(float(avg_fps)):
/external/ceres-solver/google3/
H A Djet_traits.h47 static bool IsNaN (const Type x) { return isnan(x); }
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A Dcv_util_unittest.py68 self.assertTrue(np.isnan(p[0]))
/external/clang/test/CodeGen/
H A Dbuiltins.c64 P(isnan, (1.));
/external/libchrome/base/time/
H A Dtime.cc169 if (dt == 0 || std::isnan(dt))
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp233 static_assert((std::is_same<decltype(isnan((float)0)), bool>::value), "");
234 static_assert((std::is_same<decltype(isnan((double)0)), bool>::value), "");
235 static_assert((std::is_same<decltype(isnan((long double)0)), bool>::value), "");
236 assert(isnan(-1.0) == false);
/external/libweave/third_party/chromium/base/time/
H A Dtime.cc166 if (dt == 0 || std::isnan(dt))
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c338 if (isnan(ref)) {
/external/v8/src/base/platform/
H A Dplatform-aix.cc47 if (std::isnan(time)) return "";
H A Dplatform-cygwin.cc30 if (std::isnan(time)) return "";
H A Dplatform-freebsd.cc40 if (std::isnan(time)) return "";
H A Dplatform-macos.cc103 if (std::isnan(time)) return "";
H A Dplatform-openbsd.cc38 if (std::isnan(time)) return "";
H A Dplatform-qnx.cc89 if (std::isnan(time)) return "";
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_common.hpp333 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/isnan.xml">GLSL isnan man page</a>
336 GLM_FUNC_DECL typename genType::bool_type isnan(genType const & x);
/external/vixl/src/vixl/a64/
H A Dlogic-a64.cc3516 if (std::isnan(result)) return result;
3532 VIXL_ASSERT(!std::isnan(op1) && !std::isnan(op2));
3548 VIXL_ASSERT(!std::isnan(op1) && !std::isnan(op2));
3584 if (std::isnan(result)) {
3607 VIXL_ASSERT(!std::isnan(result));
3622 VIXL_ASSERT(!std::isnan(op1) && !std::isnan(op2));
3639 if (std::isnan(o
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m43 one_desc_ix=find(isnan(s.arrival));

Completed in 1110 milliseconds

1234567