HomeSort by relevance Sort by last modified time
    Searched refs:tan (Results 101 - 125 of 397) sorted by null

1 2 3 45 6 7 8 91011>>

  /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/dng_sdk/source/
dng_lens_correction.cpp 1473 const dng_point_real64 tan = fParams->EvaluateTangential (plane,
1478 dSrc.h = diff.h + (fNormRadius * tan.h);
1479 dSrc.v = diff.v + (fNormRadius * tan.v * fPixelScaleVInv);
1491 const dng_point_real64 tan = fParams->EvaluateTangential (plane,
1496 dSrc.h = fNormRadius * (diffNorm.h * ratio + tan.h);
1497 dSrc.v = fNormRadius * (diffNorm.v * ratio + tan.v * fPixelScaleVInv);
    [all...]
  /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 140 DE_INLINE float deFloatTan (float a) { return (float)tan(a); }
154 DE_INLINE double deTan (double a) { return tan(a); }
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 68 __MATHCALL (tan,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 68 __MATHCALL (tan,, (_Mdouble_ __x));
  /bionic/libm/include/
math.h 152 double tan(double);
  /bionic/libm/x86_64/
s_tan.S 94 // tan(NaN) = quiet NaN, and raise invalid exception
95 // tan(INF) = NaN and raise invalid exception
96 // tan(+/-0) = +/-0
101 # -- Begin tan
102 ENTRY(tan) function
615 END(tan)
616 # -- End tan
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 179 / (2 * Math.tan(fovDegrees / 2 * Math.PI / 180.0f)));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 149 /** The {@code FastMath.tan} method wrapped as a {@link ComposableFunction}. */
150 public static final ComposableFunction TAN = new ComposableFunction() {
154 return FastMath.tan(d);
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 204 EIGEN_MKL_VML_DECLARE_UNARY_CALLS_LA(tan, Tan)
  /external/eigen/demos/opengl/
camera.cpp 219 float invtan = 1./tan(theta);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
test_trig.c 82 d2 = tan( i*SPI );
88 printf( "FT_Tan[%3d] = %.7f tan[%3d] = %.7f\n",
  /external/pdfium/xfa/src/fgas/src/crt/
fx_system.cpp 20 return (FX_FLOAT)tan(a);
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
__clang_cuda_cmath.h 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PathMeasure_Delegate.java 81 float tan[]) {
  /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);
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 53 * semantics are {@code sin}, {@code cos}, {@code tan},
117 public static native double tan(double a); method in class:StrictMath
    [all...]
  /libcore/ojluni/src/main/native/
StrictMath.c 162 NATIVE_METHOD(StrictMath, tan, "(D)D"),
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
config.hpp 222 using std::tan;\
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 608 milliseconds

1 2 3 45 6 7 8 91011>>