HomeSort by relevance Sort by last modified time
    Searched refs:tan (Results 76 - 100 of 356) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
jet_test.cc 145 { // Check that tan(x) = sin(x) / cos(x).
146 J z = tan(x);
153 { // Check that tan(atan(x)) = x.
154 J z = tan(atan(x));
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 241 /** \internal \returns the tan of \a a (coeff-wise) */
243 Packet ptan(const Packet& a) { using std::tan; return tan(a); }
Assign_MKL.h 204 EIGEN_MKL_VML_DECLARE_UNARY_CALLS_LA(tan, Tan)
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 113 #define tan(z) __TGMATH_CPLX(z, tan, ctan) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 124 #define tan(z) __TGMATH_CPLX(z, tan, ctan) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 124 #define tan(z) __TGMATH_CPLX(z, tan, ctan) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 113 #define tan(z) __TGMATH_CPLX(z, tan, ctan) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 113 #define tan(z) __TGMATH_CPLX(z, tan, ctan) macro
  /external/chromium_org/v8/third_party/fdlibm/
fdlibm.js 206 // kernel tan function on [-pi/4, pi/4], pi/4 ~ 0.7854
209 // Input k indicates whether ieee_tan (if k = 1) or -1/tan (if k = -1)
218 // tan(x) ~ x + T1*x + ... + T13*x
225 // Note: ieee_tan(x+y) = ieee_tan(x) + tan'(x)*y
232 // tan(x+y) = x + (T1*x + (x *(r+y)+y))
235 // tan(x) = ieee_tan(pi/4-y) = (1-ieee_tan(y))/(1+ieee_tan(y))
238 // Set returnTan to 1 for tan; -1 for cot. Anything else is illegal
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py     [all...]
  /external/ceres-solver/include/ceres/
jet.h 387 inline double tan (double x) { return std::tan(x); } function in namespace:ceres
451 // tan(a + h) ~= tan(a) + (1 + tan(a)^2) h
453 Jet<T, N> tan(const Jet<T, N>& f) { function in namespace:ceres
454 const T tan_a = tan(f.a);
621 template<typename T, int N> inline Jet<T, N> ei_tan (const Jet<T, N>& x) { return tan(x); } // NOLINT
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 450 final float tan = b/a; local
451 final double angle = Math.atan(tan);
456 final double sine = cosine * tan;
  /external/clang/test/CodeGen/
libcall-declarations.c 169 double tan(double);
295 F(sinhl), F(sqrt), F(sqrtf), F(sqrtl), F(tan),
468 // CHECK-NOERRNO: declare double @tan(double) [[NUW]]
  /external/deqp/framework/delibs/debase/
deMath.h 138 DE_INLINE float deFloatTan (float a) { return (float)tan(a); }
152 DE_INLINE double deTan (double a) { return tan(a); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
mathcalls.h 68 __MATHCALL (tan,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
tgmath.h 268 #define tan(Val) __TGMATH_UNARY_REAL_IMAG (Val, tan, ctan) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 68 __MATHCALL (tan,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 268 #define tan(Val) __TGMATH_UNARY_REAL_IMAG (Val, tan, ctan) macro
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 179 / (2 * Math.tan(fovDegrees / 2 * Math.PI / 180.0f)));
  /external/chromium_org/third_party/skia/third_party/lua/src/
lmathlib.c 52 lua_pushnumber(L, l_mathop(tan)(luaL_checknumber(L, 1)));
263 {"tan", math_tan},
  /external/eigen/demos/opengl/
camera.cpp 219 float invtan = 1./tan(theta);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 101 double answer = Math.tan(Math.atan(1.0));
108 double answer = Math.atan(Math.tan(1.0));
527 // Test for method double java.lang.Math.tan(double)
528 assertEquals("Incorrect answer", 0.0, Math.tan(0), 0D);
529 assertEquals("Incorrect answer", 1.5574077246549023, Math.tan(1), 0D);
OldAndroidStrictMathTest.java 80 double answer = StrictMath.tan(StrictMath.atan(1.0));
87 double answer = StrictMath.atan(StrictMath.tan(1.0));
548 // Test for method double java.lang.StrictMath.tan(double)
551 StrictMath.tan(StrictMath.atan(1.0)) <= 1.0
552 || StrictMath.tan(StrictMath.atan(1.0)) >= 9.9999999999999983E-1);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
config.hpp 222 using std::tan;\

Completed in 1533 milliseconds

1 2 34 5 6 7 8 91011>>