Searched refs:atan2l (Results 1 – 10 of 10) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | catrigl.c | 209 ry = atan2l(new_y, sqrt_A2my2); in casinhl() 272 rx = atan2l(sqrt_A2mx2, new_x); in cacosl() 274 rx = atan2l(sqrt_A2mx2, -new_x); in cacosl() 317 atan2l(y, x))); in clog_for_large_values() 320 return (CMPLXL(logl(hypotl(x, y)), atan2l(y, x))); in clog_for_large_values() 322 return (CMPLXL(logl(ax * ax + ay * ay) / 2, atan2l(y, x))); in clog_for_large_values() 401 ry = atan2l(2, -ay) / 2; in catanhl() 403 ry = atan2l(2 * ay, (1 - ax) * (1 + ax)) / 2; in catanhl() 405 ry = atan2l(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2; in catanhl()
|
D | s_cargl.c | 39 return (atan2l(cimagl(z), creall(z))); in cargl()
|
D | e_atan2.c | 128 __weak_reference(atan2, atan2l);
|
D | e_atan2l.c | 47 atan2l(long double y, long double x) in atan2l() function
|
D | s_clogl.c | 72 v = atan2l(y, x); in clogl()
|
/bionic/tests/headers/posix/ |
D | math_h.c | 140 FUNCTION(atan2l, long double (*f)(long double, long double)); in math_h()
|
/bionic/libm/ |
D | libm.map.txt | 22 atan2l; # introduced=21
|
/bionic/libc/include/ |
D | math.h | 90 long double atan2l(long double __y, long double __x);
|
/bionic/libc/tools/ |
D | posix-2013.txt | 42 atan2l
|
/bionic/tests/ |
D | math_test.cpp | 533 TEST(math_h, atan2l) { in TEST() argument 534 ASSERT_DOUBLE_EQ(0.0L, atan2l(0.0L, 0.0L)); in TEST()
|