/external/fdlibm/ |
w_atan2.c | 23 double ieee_atan2(double y, double x) /* wrapper atan2 */ 25 double ieee_atan2(y,x) /* wrapper atan2 */
|
/external/ltp/testcases/misc/math/float/ |
float_trigo.c | 35 {FUNC_ATAN2, 50, atan2, "atan2", "datan2", "ratan2",
|
/external/python/cpython2/Python/ |
pymath.c | 59 /* use atan2 to distinguish -0. from 0. */ 60 if (y > 0. || (y == 0. && atan2(y, -1.) > 0.)) {
|
/prebuilts/go/darwin-x86/src/math/ |
stubs_arm64.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 B ·atan2(SB)
|
stubs_mips64x.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 JMP ·atan2(SB)
|
stubs_mipsx.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 JMP ·atan2(SB)
|
stubs_ppc64x.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 BR ·atan2(SB)
|
/prebuilts/go/linux-x86/src/math/ |
stubs_arm64.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 B ·atan2(SB)
|
stubs_mips64x.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 JMP ·atan2(SB)
|
stubs_mipsx.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 JMP ·atan2(SB)
|
stubs_ppc64x.s | 15 TEXT ·Atan2(SB),NOSPLIT,$0 16 BR ·atan2(SB)
|
/external/ltp/testcases/misc/math/float/trigo/ |
genatan2.c | 54 tabRatan2[i] = atan2(sin(Inc * i), cos(Inc * i)); 112 ("problem during atan2 data file creation\n"); 120 ("problem during atan2 result file creation\n"); 129 printf("problem during atan2 data file creation\n"); 131 printf("problem during atan2 result file creation\n");
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldAndroidMathTest.java | 124 assertEquals("wrong atan2(0, 1)", 0, Math.atan2(0, 1), 0); 125 assertEquals("wrong atan2(1, 1)", PI / 4, Math.atan2(1, 1), 0); 126 assertEquals("wrong atan2(1, 0)", PI / 2, Math.atan2(1, 0), 0); 127 assertEquals("wrong atan2(1, -1)", 3 * PI / 4, Math.atan2(1, -1), 0); 128 assertEquals("wrong atan2(0, -1)", PI, Math.atan2(0, -1), 0) [all...] |
/art/test/123-inline-execute2/ |
expected.txt | 10 Math.atan2(0.0, 1.0) = 0.000000000000 20 Math.atan2(0.7853981633974483, 1.7853981633974483) = 0.414423800577 29 Math.atan2(1.5707963267948966, 2.5707963267948966) = 0.548479764417 39 Math.atan2(2.356194490192345, 3.356194490192345) = 0.612096117380 49 Math.atan2(3.141592653589793, 4.141592653589793) = 0.648948780815 59 Math.atan2(3.9269908169872414, 4.926990816987241) = 0.672931229191 68 Math.atan2(4.71238898038469, 5.71238898038469) = 0.689765469251 78 Math.atan2(5.497787143782138, 6.497787143782138) = 0.702226398171 88 Math.atan2(6.283185307179586, 7.283185307179586) = 0.711819549590 159 StrictMath.atan2(0.0, 1.0) = 0. [all...] |
/development/ndk/platforms/android-13/arch-arm/symbols/ |
libm.so.functions.txt | 13 atan2
|
/development/ndk/platforms/android-13/arch-mips/symbols/ |
libm.so.functions.txt | 13 atan2
|
/development/ndk/platforms/android-9/arch-arm/symbols/ |
libm.so.functions.txt | 13 atan2
|
/development/ndk/platforms/android-9/arch-mips/symbols/ |
libm.so.functions.txt | 13 atan2
|
/external/deqp/android/cts/master/src/ |
vk-test-issues.txt | 5 dEQP-VK.glsl.builtin.precision.atan2.mediump_compute.* 6 dEQP-VK.glsl.builtin.precision.atan2.highp_compute.*
|
/external/eigen/unsupported/Eigen/src/EulerAngles/ |
EulerSystem.h | 182 using std::atan2; 189 res[0] = atan2(mat(J,K), mat(K,K)); 198 res[1] = atan2(-mat(I,K), -c2); 201 res[1] = atan2(-mat(I,K), c2); 204 res[2] = atan2(s1*mat(K,I)-c1*mat(J,I), c1*mat(J,J) - s1 * mat(K,J)); 210 using std::atan2; 217 res[0] = atan2(mat(J,I), mat(K,I)); 227 res[1] = -atan2(s2, mat(I,I)); 232 res[1] = atan2(s2, mat(I,I)); 247 res[2] = atan2(c1*mat(J,K)-s1*mat(K,K), c1*mat(J,J) - s1 * mat(K,J)) [all...] |
/cts/libs/view/src/com/android/view/ |
Position.java | 64 double originToThisAngle = Math.atan2(origin.mY - mY, mX - origin.mX); 65 double originToOtherAngle = Math.atan2(origin.mY - other.mY, other.mX - origin.mX); 84 return Math.atan2(other.mY - mY, other.mX - mX);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/ |
BinaryFunction.java | 80 /** The {@code FastMath.atan2} method wrapped as a {@link BinaryFunction}. */ 81 public static final BinaryFunction ATAN2 = new BinaryFunction() { 85 return FastMath.atan2(x, y);
|
/external/deqp/external/vulkancts/mustpass/1.0.2/src/ |
test-issues.txt | 5 dEQP-VK.glsl.builtin.precision.atan2.mediump_compute.* 6 dEQP-VK.glsl.builtin.precision.atan2.highp_compute.*
|
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
atan2_valarray_valarray.pass.cpp | 16 // atan2(const valarray<T>& x, const valarray<T>& y); 49 std::valarray<T> v3 = atan2(v1, v2);
|
atan2_valarray_value.pass.cpp | 16 // atan2(const valarray<T>& x, const T& y); 47 std::valarray<T> v3 = atan2(v1, .75);
|