Searched refs:atan (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/v8/test/mjsunit/
H A Dtranscendentals.js46 assertTrue(Math.atan(x) != Math.atan(y));
/external/v8/test/mjsunit/
H A Dtranscendentals.js46 assertTrue(Math.atan(x) != Math.atan(y));
/external/speex/libspeex/
H A Dvorbis_psy.h54 #define toBARK(n) (13.1f*atan(.00074f*(n))+2.24f*atan((n)*(n)*1.85e-8f)+1e-4f*(n))
H A Dfilterbank.c49 #define toBARK(n) (13.1f*atan(.00074f*(n))+2.24f*atan((n)*(n)*1.85e-8f)+1e-4f*(n))
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c11 double atan(double);
80 acos, acosl, acosf, asin, asinl, asinf, atan, atanl, atanf, atan2, atan2l,
95 // CHECK-NOERRNO: declare double @atan(double) [[NUW]]
H A Dlibcalls.c81 double atan_ = atan(d);
84 // CHECK-NO: declare double @atan(double) [[NUW_RN]]
87 // CHECK-YES-NOT: declare double @atan(double) [[NUW_RN]]
/external/libvorbis/lib/
H A Dscales.h79 #define toBARK(n) (13.1f*atan(.00074f*(n))+2.24f*atan((n)*(n)*1.85e-8f)+1e-4f*(n))
/external/stlport/test/unit/
H A Dvalarray_test.cpp41 tmp = atan(darray);
67 tmp = atan(farray);
94 tmp = atan(ldarray);
H A Dcmath_test.cpp103 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0)), 1.0) );
128 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0f)), 1.0f) );
155 CPPUNIT_CHECK( are_equals(std::atan(0.0l), 0.0l) );
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayMath.cpp49 SK_FUNCTION(atan),
73 (SkFunctionParamType) SkType_Float, // atan
121 SK_MEMBER_FUNCTION(atan, Float),
162 case SK_FUNCTION(atan):
/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/skia/src/animator/
H A DSkDisplayMath.cpp49 SK_FUNCTION(atan),
73 (SkFunctionParamType) SkType_Float, // atan
121 SK_MEMBER_FUNCTION(atan, Float),
162 case SK_FUNCTION(atan):
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
363 _STLP_DMATH_INLINE(atan)
434 _STLP_DEF_MATH_INLINE(atan, atan)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
556 using ::atan;
/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);
H A Dvcpu_fnfns.c158 printf(" atanD(%+20.13e) = %+20.13e\n", d, atan(d));
/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);
/external/chromium_org/cc/output/
H A Dfilter_operations.cc52 float d = floorf(std_deviation * 3.f * sqrt(8.f * atan(1.f)) / 4.f + 0.5f);
/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/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DLodControl.java154 float atanNH = FastMath.atan(cam.getFrustumNear() * cam.getFrustumTop());
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
H A Dswim.c81 ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y)));
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
H A Dswim.c81 ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y)));
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
H A Dswim.c81 ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y)));
/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/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DNavCalculator.java98 trueCourse = (float) Math.toDegrees(Math.atan(dLong / dmp));
554 return (int) Math.toDegrees(Math.atan(opp / adj));
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DFlyByCamera.java279 float fovY = FastMath.atan(h / near)

Completed in 813 milliseconds

123