Searched defs:atan (Results 1 - 25 of 30) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
H A DDfpMath.java841 * @return atan(a)
873 * atan(x) = atan( (x - sqrt(2) + 1) / (1+x*sqrt(2) - x) + PI/8.0
875 * @return atan(a)
877 public static Dfp atan(final Dfp a) { method in class:DfpMath
943 return atan(a.divide(a.getOne().subtract(a.multiply(a)).sqrt()));
960 result = atan(a.getOne().subtract(a.multiply(a)).sqrt().divide(a));
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java503 * <code> atan(z) = (i/2) log((i + z)/(i - z)) </code></pre></p>
511 public Complex atan() { method in class:Complex
/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h53 __DEVICE__ float atan(float __x) { return ::atanf(__x); } function
H A Dtgmath.h121 // atan
129 __tg_atan(double __x) {return atan(__x);}
147 #undef atan macro
148 #define atan(__x) __tg_atan(__tg_promote1((__x))(__x)) macro
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h248 atan() const function
/external/valgrind/memcheck/tests/
H A Dvcpu_fbench.c351 #define atan I_atan macro
490 /* atan(x) Return arctangent in radians,
493 static double atan(x) function
546 temp = atan(y / x);
/external/valgrind/perf/
H A Dfbench.c347 #define atan I_atan macro
486 /* atan(x) Return arctangent in radians,
489 static double atan(x) function
542 temp = atan(y / x);
/external/tensorflow/tensorflow/contrib/labeled_tensor/
H A D__init__.py69 atan = _core.atan variable
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java139 /** Tangent table, used by atan() (high bits). */
142 /** Tangent table, used by atan() (low bits). */
2780 * @return atan(x)
2782 public static double atan(double x) { method in class:FastMath
2783 return atan(x, 0.0, false);
2790 * @return atan(xa + xb) (or angle shifted by {@code PI} if leftPlane is true)
2792 private static double atan(double xa, double xb, boolean leftPlane) { method in class:FastMath
2899 /* Add in effect of epsB. atan'(x) = 1/(1+x^2) */
3033 return atan(r, 0, x < 0);
3049 if (ra == 0) { // Fix up the sign so atan work
[all...]
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h1192 T atan(const T &x) { function in namespace:Eigen::numext
1193 EIGEN_USING_STD_MATH(atan);
1194 return atan(x);
1199 float atan(const float &x) { return ::atanf(x); } function in namespace:Eigen::numext
1202 double atan(const double &x) { return ::atan(x); } function in namespace:Eigen::numext
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp35 Ambiguous atan(Ambiguous){ return Ambiguous(); } function
149 static_assert((std::is_same<decltype(atan((float)0)), float>::value), "");
150 static_assert((std::is_same<decltype(atan((bool)0)), double>::value), "");
151 static_assert((std::is_same<decltype(atan((unsigned short)0)), double>::value), "");
152 static_assert((std::is_same<decltype(atan((int)0)), double>::value), "");
153 static_assert((std::is_same<decltype(atan((unsigned int)0)), double>::value), "");
154 static_assert((std::is_same<decltype(atan((long)0)), double>::value), "");
155 static_assert((std::is_same<decltype(atan((unsigned long)0)), double>::value), "");
156 static_assert((std::is_same<decltype(atan((long long)0)), double>::value), "");
157 static_assert((std::is_same<decltype(atan((unsigne
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp37 Ambiguous atan(Ambiguous){ return Ambiguous(); } function
152 static_assert((std::is_same<decltype(std::atan((float)0)), float>::value), "");
153 static_assert((std::is_same<decltype(std::atan((bool)0)), double>::value), "");
154 static_assert((std::is_same<decltype(std::atan((unsigned short)0)), double>::value), "");
155 static_assert((std::is_same<decltype(std::atan((int)0)), double>::value), "");
156 static_assert((std::is_same<decltype(std::atan((unsigned int)0)), double>::value), "");
157 static_assert((std::is_same<decltype(std::atan((long)0)), double>::value), "");
158 static_assert((std::is_same<decltype(std::atan((unsigned long)0)), double>::value), "");
159 static_assert((std::is_same<decltype(std::atan((long long)0)), double>::value), "");
160 static_assert((std::is_same<decltype(std::atan((unsigne
[all...]
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Darray_elementwise_ops_test.cc2031 auto atan = builder.Atan2(a, b); local
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
H A Dcore.py1118 atan = define_unary_op('atan', math_ops.atan) variable
/external/tensorflow/tensorflow/core/kernels/
H A Dcwise_ops.h638 struct atan : base<T, Eigen::internal::scalar_atan_op<T>> {}; struct in namespace:tensorflow::functor
/external/v8/src/base/
H A Dieee754.cc1151 /* atan(x)
1153 * 1. Reduce x to positive by atan(x) = -atan(-x).
1158 * [0,7/16] atan(x) = t-t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
1159 * [7/16,11/16] atan(x) = atan(1/2) + atan( (t-0.5)/(1+t/2) )
1160 * [11/16.19/16] atan(x) = atan( 1 ) + atan( (
1170 double atan(double x) { function in namespace:v8::base::ieee754
[all...]
/external/swiftshader/src/Shader/
H A DShaderCore.cpp356 // Approximation of atan in [0..1]
416 // Approximation of atan in [0..1]
1539 void ShaderCore::atan(Vector4f &dst, const Vector4f &src, bool pp) function in class:sw::ShaderCore
/external/annotation-tools/scene-lib/
H A Dant-contrib.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/AntContribVersion ...
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/annotation-tools/asmx/test/lib/
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 604 milliseconds

12