Home
last modified time | relevance | path

Searched refs:isnormal (Results 1 – 14 of 14) sorted by relevance

/external/ceres-solver/include/ceres/
Dfpclassify.h64 inline bool IsNormal (double x) { return isnormal(x); }
81 inline bool IsNormal (double x) { return std::isnormal(x); }
/external/v8/src/base/
Dqnx-math.h14 #undef isnormal
/external/libcxx/include/support/win32/
Dmath_win32.h39 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) in isnormal() function
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp241 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), ""); in test_isnormal()
242 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), ""); in test_isnormal()
243 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), ""); in test_isnormal()
244 assert(isnormal(-1.0) == true); in test_isnormal()
/external/libcxx/include/
Dcmath147 bool isnormal(arithmetic x);
432 // isnormal
434 #ifdef isnormal
441 return isnormal(__lcpp_x);
444 #undef isnormal
449 isnormal(_A1 __lcpp_x) _NOEXCEPT
454 #endif // isnormal
643 using ::isnormal;
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp61 Ambiguous isnormal(Ambiguous){ return Ambiguous(); } in isnormal() function
585 #ifdef isnormal in test_isnormal()
586 #error isnormal defined in test_isnormal()
588 static_assert((std::is_same<decltype(std::isnormal((float)0)), bool>::value), ""); in test_isnormal()
589 static_assert((std::is_same<decltype(std::isnormal((double)0)), bool>::value), ""); in test_isnormal()
590 static_assert((std::is_same<decltype(std::isnormal(0)), bool>::value), ""); in test_isnormal()
591 static_assert((std::is_same<decltype(std::isnormal((long double)0)), bool>::value), ""); in test_isnormal()
592 static_assert((std::is_same<decltype(isnormal(Ambiguous())), Ambiguous>::value), ""); in test_isnormal()
593 assert(std::isnormal(-1.0) == true); in test_isnormal()
/external/skia/fuzz/
Dfuzz.cpp420 if (!std::isnormal(f) && f != 0.0) { in nextRangeF()
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
Dintelligibility_utils.cc304 if (!std::isnormal(factor)) { in Apply()
/external/valgrind/none/tests/ppc32/
Dtest_isa_2_06_part3.c508 if (isnormal(calc_diff_tmp)) { in check_estimate()
538 if (isnormal(calc_diff_tmp)) { in check_estimate()
Dtest_isa_2_07_part2.c863 if (isnormal(calc_diff_tmp)) { in check_reciprocal_estimate()
/external/valgrind/none/tests/ppc64/
Dtest_isa_2_06_part3.c508 if (isnormal(calc_diff_tmp)) { in check_estimate()
538 if (isnormal(calc_diff_tmp)) { in check_estimate()
Dtest_isa_2_07_part2.c863 if (isnormal(calc_diff_tmp)) { in check_reciprocal_estimate()
/external/valgrind/none/tests/arm64/
Dfp_and_simd.c70 if (isnormal(v->f32[0]) && isnormal(v->f32[1]) && isnormal(v->f32[2]) in randV128()
71 && isnormal(v->f32[3]) && isnormal(v->f64[0]) && isnormal(v->f64[1])) in randV128()
/external/vixl/src/vixl/a64/
Dlogic-a64.cc3738 if (std::isnormal(op1 / two)) { in FPRSqrtStepFused()
3740 } else if (std::isnormal(op2 / two)) { in FPRSqrtStepFused()