HomeSort by relevance Sort by last modified time
    Searched full:atan2 (Results 251 - 275 of 1351) sorted by null

<<11121314151617181920>>

  /development/ndk/platforms/android-23/arch-arm64/symbols/
libm.so.functions.txt 17 atan2
libm.so.versions.txt 21 atan2;
  /development/ndk/platforms/android-23/arch-mips/symbols/
libm.so.functions.txt 17 atan2
libm.so.versions.txt 21 atan2;
  /development/ndk/platforms/android-23/arch-mips64/symbols/
libm.so.functions.txt 17 atan2
libm.so.versions.txt 21 atan2;
  /development/ndk/platforms/android-23/arch-x86/symbols/
libm.so.functions.txt 17 atan2
libm.so.versions.txt 21 atan2;
  /development/ndk/platforms/android-23/arch-x86_64/symbols/
libm.so.functions.txt 17 atan2
libm.so.versions.txt 21 atan2;
  /external/skia/src/shaders/gradients/
SkSweepGradient.cpp 149 // On some devices they incorrectly implement atan2(y,x) as atan(y/x). In actuality it is
150 // atan2(y,x) = 2 * atan(y / (sqrt(x^2 + y^2) + x)). So to work around this we pass in
151 // (sqrt(x^2 + y^2) + x) as the second parameter to atan2 in these cases. We let the device
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cmathmodule.c 135 r.real = atan2(fabs(z.imag), z.real);
152 r.real = 2.*atan2(s1.real, s2.real);
177 r.imag = atan2(z.imag, z.real);
186 r.imag = 2.*atan2(s1.imag, s2.real);
234 r.imag = atan2(z.imag, fabs(z.real));
243 r.imag = atan2(z.imag, s1.real*s2.real-s1.imag*s2.imag);
268 /* Windows screws up atan2 for inf and nan, and alpha Tru64 5.1 doesn't follow
269 C99 for atan2(0., 0.). */
278 /* atan2(+-inf, +inf) == +-pi/4 */
281 /* atan2(+-inf, -inf) == +-pi*3/4 */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cmathmodule.c 135 r.real = atan2(fabs(z.imag), z.real);
152 r.real = 2.*atan2(s1.real, s2.real);
177 r.imag = atan2(z.imag, z.real);
186 r.imag = 2.*atan2(s1.imag, s2.real);
234 r.imag = atan2(z.imag, fabs(z.real));
243 r.imag = atan2(z.imag, s1.real*s2.real-s1.imag*s2.imag);
268 /* Windows screws up atan2 for inf and nan, and alpha Tru64 5.1 doesn't follow
269 C99 for atan2(0., 0.). */
278 /* atan2(+-inf, +inf) == +-pi/4 */
281 /* atan2(+-inf, -inf) == +-pi*3/4 */
    [all...]
  /external/python/cpython2/Modules/
cmathmodule.c 135 r.real = atan2(fabs(z.imag), z.real);
152 r.real = 2.*atan2(s1.real, s2.real);
177 r.imag = atan2(z.imag, z.real);
186 r.imag = 2.*atan2(s1.imag, s2.real);
234 r.imag = atan2(z.imag, fabs(z.real));
243 r.imag = atan2(z.imag, s1.real*s2.real-s1.imag*s2.imag);
268 /* Windows screws up atan2 for inf and nan, and alpha Tru64 5.1 doesn't follow
269 C99 for atan2(0., 0.). */
278 /* atan2(+-inf, +inf) == +-pi/4 */
281 /* atan2(+-inf, -inf) == +-pi*3/4 *
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
complex.cpp 56 { return ::atan2(__z._M_im, __z._M_re); }
60 { return ::atan2(__z._M_im, __z._M_re); }
65 { return ::atan2(__z._M_im, __z._M_re); }
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv;
255 r._M_im = ::atan2(z._M_im, z._M_re);
294 _Tp logi = ::atan2(a._M_im, a._M_re);
304 _Tp logi = ::atan2(a._M_im, a._M_re);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
complex.cpp 56 { return ::atan2(__z._M_im, __z._M_re); }
60 { return ::atan2(__z._M_im, __z._M_re); }
65 { return ::atan2(__z._M_im, __z._M_re); }
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv;
255 r._M_im = ::atan2(z._M_im, z._M_re);
294 _Tp logi = ::atan2(a._M_im, a._M_re);
304 _Tp logi = ::atan2(a._M_im, a._M_re);
  /prebuilts/go/darwin-x86/src/math/
all_test.go 103 var atan2 = []float64{ var
814 -3 * Pi / 4, // atan2(-Inf, -Inf)
815 -Pi / 2, // atan2(-Inf, -Pi)
816 -Pi / 2, // atan2(-Inf, +0)
817 -Pi / 2, // atan2(-Inf, +Pi)
818 -Pi / 4, // atan2(-Inf, +Inf)
819 NaN(), // atan2(-Inf, NaN)
820 -Pi, // atan2(-Pi, -Inf)
821 -Pi / 2, // atan2(-Pi, +0)
822 Copysign(0, -1), // atan2(-Pi, Inf
    [all...]
  /prebuilts/go/linux-x86/src/math/
all_test.go 103 var atan2 = []float64{ var
814 -3 * Pi / 4, // atan2(-Inf, -Inf)
815 -Pi / 2, // atan2(-Inf, -Pi)
816 -Pi / 2, // atan2(-Inf, +0)
817 -Pi / 2, // atan2(-Inf, +Pi)
818 -Pi / 4, // atan2(-Inf, +Inf)
819 NaN(), // atan2(-Inf, NaN)
820 -Pi, // atan2(-Pi, -Inf)
821 -Pi / 2, // atan2(-Pi, +0)
822 Copysign(0, -1), // atan2(-Pi, Inf
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 627 FastMath.atan2(-(v1.getY()), v1.getZ()),
629 FastMath.atan2(-(v2.getY()), v2.getX())
645 FastMath.atan2(v1.getZ(), v1.getY()),
647 FastMath.atan2(v2.getZ(), v2.getX())
663 FastMath.atan2(v1.getX(), v1.getZ()),
665 FastMath.atan2(v2.getX(), v2.getY())
681 FastMath.atan2(-(v1.getZ()), v1.getX()),
683 FastMath.atan2(-(v2.getZ()), v2.getY())
699 FastMath.atan2(-(v1.getX()), v1.getY()),
701 FastMath.atan2(-(v2.getX()), v2.getZ()
    [all...]
  /external/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 53 __DEVICE__ double atan2(double, double);
54 __DEVICE__ float atan2(float, float);
193 using ::atan2;
  /external/clang/test/CodeGen/
libcalls.c 96 double atan2_ = atan2(d, 2);
99 // CHECK-NO: declare double @atan2(double, double) [[NUW_RN]]
102 // CHECK-YES-NOT: declare double @atan2(double, double) [[NUW_RN]]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 53 __DEVICE__ double atan2(double, double);
54 __DEVICE__ float atan2(float, float);
193 using ::atan2;
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 53 __DEVICE__ double atan2(double, double);
54 __DEVICE__ float atan2(float, float);
193 using ::atan2;
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 53 __DEVICE__ double atan2(double, double);
54 __DEVICE__ float atan2(float, float);
193 using ::atan2;
  /prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 53 __DEVICE__ double atan2(double, double);
54 __DEVICE__ float atan2(float, float);
193 using ::atan2;

Completed in 639 milliseconds

<<11121314151617181920>>