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

12

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
H A D15.8.2.4.js24 ECMA Section: 15.8.2.4 atan( x )
41 var TITLE = "Math.atan()";
53 array[item++] = new TestCase( SECTION, "Math.atan.length", 1, Math.atan.length );
55 array[item++] = new TestCase( SECTION, "Math.atan()", Number.NaN, Math.atan() );
56 array[item++] = new TestCase( SECTION, "Math.atan(void 0)", Number.NaN, Math.atan(void 0) );
57 array[item++] = new TestCase( SECTION, "Math.atan(null)", 0, Math.atan(nul
[all...]
/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))
H A Dmath_approx.h46 #define spx_atan atan
/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/quake/quake/src/WinQuake/
H A Dchase.cpp87 r_refdef.viewangles[PITCH] = -atan(stop[2] / dist) / M_PI * 180;
/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/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/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h33 /// double atan(double x);
34 atan, enumerator in enum:llvm::LibFunc::Func
/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)
/external/valgrind/main/memcheck/tests/amd64/
H A Dmore_x87_fp.c60 printf("a=%f atan(tan(a))=%f\n", a, atan(tan(a)));
H A Dmore_x87_fp.stdout.exp14 a=2.000000 atan(tan(a))=-1.141593
28 a=1.400000 atan(tan(a))=1.400000
/external/valgrind/main/memcheck/tests/x86/
H A Dmore_x86_fp.c50 printf("a=%f atan(tan(a))=%f\n", a, atan(tan(a)));
H A Dmore_x86_fp.stdout.exp15 a=2.000000 atan(tan(a))=-1.141593
30 a=1.400000 atan(tan(a))=1.400000
/external/aac/libSYS/src/
H A DgenericStds.cpp354 double FDKatan(double x) { return atan(x); }
/external/webkit/Source/JavaScriptCore/runtime/
H A DMathObject.cpp71 atan mathProtoFuncATan DontEnum|Function 1
135 return JSValue::encode(jsDoubleNumber(atan(exec->argument(0).toNumber(exec))));

Completed in 1478 milliseconds

12