Searched refs:fpclassify (Results 1 - 17 of 17) sorted by relevance

/external/v8/src/base/
H A Dqnx-math.h10 #undef fpclassify macro
H A Dwin32-math.h35 int fpclassify(double x);
H A Dwin32-math.cc53 int fpclassify(double x) { function in namespace:std
/external/mesa3d/src/mesa/main/
H A Dquerymatrix.c40 /* Oddly, the fpclassify() function doesn't exist in such a form
47 fpclassify(double x) function
78 /* fpclassify is available. */
83 fpclassify(double x) function
153 switch (fpclassify(matrix[i])) {
199 * in case fpclassify() is returnings something unexpected.
/external/libcxx/include/support/win32/
H A Dmath_win32.h110 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) function
/external/clang/test/CodeGen/
H A Dbuiltins.c42 P(fpclassify, (0, 1, 2, 3, 4, 1.0));
43 P(fpclassify, (0, 1, 2, 3, 4, 1.0f));
44 P(fpclassify, (0, 1, 2, 3, 4, 1.0l));
/external/libxml2/
H A Dtrionan.c565 #if defined(fpclassify) && defined(signbit)
567 * C99 defines fpclassify() and signbit() as a macros
570 switch (fpclassify(number)) {
619 * HP-UX 9.x and 10.x have an fpclassify() function, that is different
620 * from the C99 fpclassify() macro supported on HP-UX 11.x.
623 * same values as the HP-UX fpclassify() function.
632 # define TRIO_FPCLASSIFY(n) fpclassify(n)
/external/v8/src/
H A Dconversions.cc21 // STLPort doesn't import fpclassify into the std namespace.
22 using std::fpclassify;
122 switch (fpclassify(v)) {
H A Druntime.cc76 // STLPort doesn't import fpclassify and isless into the std namespace.
77 using std::fpclassify;
7581 if ((fpclassify(x) == FP_ZERO) && (fpclassify(y) == FP_ZERO)) {
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp209 static_assert((std::is_same<decltype(fpclassify((float)0)), int>::value), "");
210 static_assert((std::is_same<decltype(fpclassify((double)0)), int>::value), "");
211 static_assert((std::is_same<decltype(fpclassify((long double)0)), int>::value), "");
212 assert(fpclassify(-1.0) == FP_NORMAL);
/external/valgrind/none/tests/ppc32/
H A Dtest_isa_2_07_part2.c838 if (fpclassify(src_dp) == FP_ZERO)
841 return !res_is_negative && (fpclassify(res_dp) == FP_ZERO);
847 return res_is_negative && (fpclassify(res_dp) == FP_ZERO);
H A Dtest_isa_2_06_part3.c483 if (fpclassify(SRC) == FP_ZERO)
486 return !res_is_negative && (fpclassify(RES) == FP_ZERO);
492 return res_is_negative && (fpclassify(RES) == FP_ZERO);
/external/valgrind/none/tests/ppc64/
H A Dtest_isa_2_07_part2.c838 if (fpclassify(src_dp) == FP_ZERO)
841 return !res_is_negative && (fpclassify(res_dp) == FP_ZERO);
847 return res_is_negative && (fpclassify(res_dp) == FP_ZERO);
H A Dtest_isa_2_06_part3.c483 if (fpclassify(SRC) == FP_ZERO)
486 return !res_is_negative && (fpclassify(RES) == FP_ZERO);
492 return res_is_negative && (fpclassify(RES) == FP_ZERO);
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp59 Ambiguous fpclassify(Ambiguous){ return Ambiguous(); } function
559 #ifdef fpclassify
560 #error fpclassify defined
562 static_assert((std::is_same<decltype(std::fpclassify((float)0)), int>::value), "");
563 static_assert((std::is_same<decltype(std::fpclassify((double)0)), int>::value), "");
564 static_assert((std::is_same<decltype(std::fpclassify(0)), int>::value), "");
565 static_assert((std::is_same<decltype(std::fpclassify((long double)0)), int>::value), "");
566 static_assert((std::is_same<decltype(fpclassify(Ambiguous())), Ambiguous>::value), "");
567 assert(std::fpclassify(-1.0) == FP_NORMAL);
/external/v8/src/arm64/
H A Dsimulator-arm64.cc2777 switch (std::fpclassify(value)) {
2818 switch (std::fpclassify(value)) {
2854 if (std::fpclassify(value) == FP_NORMAL) {
/external/vixl/src/vixl/a64/
H A Dlogic-a64.cc128 switch (std::fpclassify(value)) {
240 switch (std::fpclassify(value)) {
290 switch (std::fpclassify(value)) {
335 switch (std::fpclassify(value)) {
374 if (std::fpclassify(value) == FP_NORMAL) {

Completed in 1331 milliseconds