Searched refs:isinf (Results 1 - 16 of 16) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_cproj.c39 if (!isinf(creal(z)) && !isinf(cimag(z)))
H A Ds_cprojf.c39 if (!isinf(crealf(z)) && !isinf(cimagf(z)))
H A Ds_cprojl.c39 if (!isinf(creall(z)) && !isinf(cimagl(z)))
H A Ds_csqrtf.c53 if (isinf(b))
59 if (isinf(a)) {
H A Ds_csqrt.c62 if (isinf(b))
68 if (isinf(a)) {
H A Ds_csqrtl.c62 if (isinf(b))
68 if (isinf(a)) {
H A Dcatrig.c36 #undef isinf macro
37 #define isinf(x) (fabs(x) == INFINITY) macro
288 if (isinf(x))
291 if (isinf(y))
372 if (isinf(x))
375 if (isinf(y))
541 if (ix - iy >= CUTOFF << 20 || isinf(x))
586 if (isinf(x))
589 if (isinf(y))
H A Dcatrigf.c50 #undef isinf macro
51 #define isinf(x) (fabsf(x) == INFINITY) macro
158 if (isinf(x))
160 if (isinf(y))
216 if (isinf(x))
218 if (isinf(y))
326 if (ix - iy >= CUTOFF << 23 || isinf(x))
355 if (isinf(x))
357 if (isinf(y))
H A Ds_ctanh.c108 return (CMPLX(x, copysign(0, isinf(y) ? y : sin(y) * cos(y))));
H A Ds_ctanhf.c58 copysignf(0, isinf(y) ? y : sinf(y) * cosf(y))));
/bionic/libc/bionic/
H A Dfpclassify.cpp44 return isinf(d);
46 __strong_alias(isinf, __isinf);
49 return isinf(f);
88 return isinf(ld);
/bionic/benchmarks/
H A Dmath_benchmark.cpp86 d += isinf(v);
96 d += (isinf)(v);
/bionic/tests/headers/posix/
H A Dmath_h.c49 #if !defined(isinf)
50 #error isinf
/bionic/libc/include/
H A Dmath.h67 #define isinf(x) __builtin_isinf(x) macro
317 * specify them either). Exposing these means that isinf and isnan will have a
325 int (isinf)(double __x) __attribute_const__ __INTRODUCED_IN(21);
/bionic/tests/
H A Dmath_test.cpp28 // stlport implementation does this only for signbit, isfinite, isinf and
47 return isinf(in);
137 TEST(MATH_TEST, isinf) {
278 // The isinf macro deals with all three types; the isinf function is for doubles.
279 ASSERT_FALSE((isinf)(123.0));
280 ASSERT_TRUE((isinf)(HUGE_VAL));
1009 ASSERT_TRUE(isinf(logb(HUGE_VAL)));
1025 ASSERT_TRUE(isinf(logbl(HUGE_VALL)));
1033 ASSERT_TRUE(isinf(log1
[all...]
/bionic/tools/versioner/current/
H A Dmath.h67 #define isinf(x) __builtin_isinf(x) macro
317 * specify them either). Exposing these means that isinf and isnan will have a
325 int (isinf)(double __x) __attribute_const__ __INTRODUCED_IN(21);

Completed in 180 milliseconds