Searched refs:isnormal (Results 1 – 14 of 14) sorted by relevance
/external/ceres-solver/include/ceres/ |
D | fpclassify.h | 64 inline bool IsNormal (double x) { return isnormal(x); } 81 inline bool IsNormal (double x) { return std::isnormal(x); }
|
/external/v8/src/base/ |
D | qnx-math.h | 14 #undef isnormal
|
/external/libcxx/include/support/win32/ |
D | math_win32.h | 39 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) in isnormal() function
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 241 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/ |
D | cmath | 147 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/ |
D | cmath.pass.cpp | 61 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/ |
D | fuzz.cpp | 420 if (!std::isnormal(f) && f != 0.0) { in nextRangeF()
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
D | intelligibility_utils.cc | 304 if (!std::isnormal(factor)) { in Apply()
|
/external/valgrind/none/tests/ppc32/ |
D | test_isa_2_06_part3.c | 508 if (isnormal(calc_diff_tmp)) { in check_estimate() 538 if (isnormal(calc_diff_tmp)) { in check_estimate()
|
D | test_isa_2_07_part2.c | 863 if (isnormal(calc_diff_tmp)) { in check_reciprocal_estimate()
|
/external/valgrind/none/tests/ppc64/ |
D | test_isa_2_06_part3.c | 508 if (isnormal(calc_diff_tmp)) { in check_estimate() 538 if (isnormal(calc_diff_tmp)) { in check_estimate()
|
D | test_isa_2_07_part2.c | 863 if (isnormal(calc_diff_tmp)) { in check_reciprocal_estimate()
|
/external/valgrind/none/tests/arm64/ |
D | fp_and_simd.c | 70 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/ |
D | logic-a64.cc | 3738 if (std::isnormal(op1 / two)) { in FPRSqrtStepFused() 3740 } else if (std::isnormal(op2 / two)) { in FPRSqrtStepFused()
|