Home
last modified time | relevance | path

Searched refs:atanf (Results 1 – 4 of 4) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_atan2f.c45 if(hx==0x3f800000) return atanf(y); /* x=1.0 */ in __ieee754_atan2f()
88 else z=atanf(fabsf(y/x)); /* safe to do y/x */ in __ieee754_atan2f()
Ds_atanf.c49 atanf(float x) in atanf() function
/bionic/libm/include/
Dmath.h307 float atanf(float);
/bionic/tests/
Dmath_test.cpp352 TEST(math, atanf) { in TEST() argument
353 ASSERT_FLOAT_EQ(0.0f, atanf(0.0f)); in TEST()