/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/ |
math.rs | 249 TEST_FN_FUNC_FN_FN(atan2);
|
/libcore/benchmarks/src/benchmarks/regression/ |
MathBenchmark.java | 93 result = Math.atan2(3, 4);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageStraighten.java | 160 return (float) (Math.atan2(dx, dy) * 180 / Math.PI);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
mathcalls.h | 61 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
mathcalls.h | 61 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
mathcalls.h | 61 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x));
|
/prebuilts/misc/common/swig/include/2.0.11/php/ |
phpkw.swg | 597 PHPFN(atan2);
|
/external/eigen/demos/opengl/ |
quaternion_demo.cpp | 169 m_angles.coeffRef(0) = std::atan2(-m.coeff(1,2),m.coeff(2,2)); 170 m_angles.coeffRef(2) = std::atan2(-m.coeff(0,1),m.coeff(0,0));
|
/external/fdlibm/ |
k_standard.c | 131 exc.name = "atan2"; 137 (void) WRITE2("atan2: DOMAIN error\n", 20);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.c | 298 arc->eta1 = atan2(sin(lambda1) / arc->b, 300 arc->eta2 = atan2(sin(lambda2) / arc->b,
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
functional.hpp | 521 OPENCV_CUDA_IMPLEMENT_BIN_FUNCTOR(atan2, ::atan2)
|
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/ |
functional.hpp | 609 CV_CUDEV_BINARY_FUNCTION_INST(atan2, ::atan2)
|
/external/opencv3/modules/shape/src/ |
sc_dis.cpp | 465 angleMatrix.at<float>(i,j) = std::atan2(dif.y, dif.x); 470 float refAngle = atan2(refPt.y, refPt.x);
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmspcs.c | 310 // Auxiliar: atan2 but operating in degrees and returning 0 if a==b==0 319 h = atan2(a, b);
|
cmssm.c | 98 // ATAN2() which always returns degree positive numbers 108 a = (atan2(y, x) * 180.0) / M_PI;
|
/external/skia/tests/ |
PathOpsAngleTest.cpp | 114 double a1 = atan2(line[1].fY, line[1].fX); 115 double a2 = atan2(last.fY, last.fX);
|
/frameworks/base/core/java/android/hardware/ |
GeomagneticField.java | 268 return (float) Math.toDegrees(Math.atan2(mY, mX)); 276 return (float) Math.toDegrees(Math.atan2(mZ,
|
/frameworks/base/libs/hwui/utils/ |
VectorDrawableUtils.cpp | 225 double eta0 = atan2((y0p - cy), (x0p - cx)); 227 double eta1 = atan2((y1p - cy), (x1p - cx));
|
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/ |
PathParser.java | 644 double eta0 = Math.atan2((y0p - cy), (x0p - cx)); 646 double eta1 = Math.atan2((y1p - cy), (x1p - cx));
|
/bionic/tests/ |
math_test.cpp | 352 TEST(math, atan2) { 353 ASSERT_DOUBLE_EQ(0.0, atan2(0.0, 0.0)); [all...] |
/frameworks/base/libs/hwui/ |
PathTessellator.cpp | 275 float beginTheta = atan2( 278 float endTheta = atan2( 464 float theta = atan2(normal.y, normal.x); [all...] |
/frameworks/rs/scriptc/ |
rs_math.rsh | 477 * atan2: Inverse tangent of a ratio 488 atan2(float numerator, float denominator); 491 atan2(float2 numerator, float2 denominator); 494 atan2(float3 numerator, float3 denominator); 497 atan2(float4 numerator, float4 denominator); 501 atan2(half numerator, half denominator); 506 atan2(half2 numerator, half2 denominator); 511 atan2(half3 numerator, half3 denominator); 516 atan2(half4 numerator, half4 denominator); [all...] |
/prebuilts/sdk/renderscript/include/ |
rs_math.rsh | 477 * atan2: Inverse tangent of a ratio 488 atan2(float numerator, float denominator); 491 atan2(float2 numerator, float2 denominator); 494 atan2(float3 numerator, float3 denominator); 497 atan2(float4 numerator, float4 denominator); 501 atan2(half numerator, half denominator); 506 atan2(half2 numerator, half2 denominator); 511 atan2(half3 numerator, half3 denominator); 516 atan2(half4 numerator, half4 denominator); [all...] |
/device/google/contexthub/firmware/src/drivers/window_orientation/ |
window_orientation.c | 442 // atan2 returns [-180, 180]; normalize to [0, 360]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/ |
HarmonicCoefficientsGuesser.java | 275 phi = FastMath.atan2(-fsMean, fcMean);
|