Searched defs:atan (Results 1 - 9 of 9) sorted by path

/external/ceres-solver/include/ceres/
H A Djet.h418 inline double atan (double x) { return std::atan(x); } function in namespace:ceres
513 // atan(a + h) ~= atan(a) + 1 / (1 + a^2) h
515 Jet<T, N> atan(const Jet<T, N>& f) { function in namespace:ceres
517 g.a = atan(f.a);
705 template<typename T, int N> inline Jet<T, N> ei_atan(const Jet<T, N>& x) { return atan(x); } // NOLINT
/external/clang/lib/Headers/
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/clang/lib/include/
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/unsupported/test/mpreal/
H A Dmpreal.h349 friend const mpreal atan (const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
1829 inline const mpreal atan (const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
1838 return atan(1/v, rnd_mode);
/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java76 * Reverse atan lookup table.
99 // Calculate a shift used to scale atan lookups
272 public static int atan(int n) { method in class:Fixed
290 public static int atan(int x, int y) { method in class:Fixed
291 int n = atan(div(x, abs(y) + 1)); // kludge to prevent ArithmeticException
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java457 * @return fValue's atan
458 * @see java.lang.Math#atan(double)
460 public static float atan(float fValue) { method in class:FastMath
461 return (float) Math.atan(fValue);
828 store.y = FastMath.atan(cartCoords.z / x);
864 store.z = FastMath.atan(cartCoords.z / x);
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h104 /// double atan(double x);
105 atan, enumerator in enum:llvm::LibFunc::Func
/external/valgrind/main/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/main/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);

Completed in 463 milliseconds