HomeSort by relevance Sort by last modified time
    Searched refs:tan (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/eigen/doc/snippets/
Cwise_tan.cpp 2 cout << v.tan() << endl;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.18.js 24 ECMA Section: 15.8.2.18 tan( x )
25 Description: return an approximation to the tan of the
39 var TITLE = "Math.tan(x)";
51 array[item++] = new TestCase( SECTION, "Math.tan.length", 1, Math.tan.length );
53 array[item++] = new TestCase( SECTION, "Math.tan()", Number.NaN, Math.tan() );
54 array[item++] = new TestCase( SECTION, "Math.tan(void 0)", Number.NaN, Math.tan(void 0));
55 array[item++] = new TestCase( SECTION, "Math.tan(null)", 0, Math.tan(null) )
    [all...]
  /frameworks/base/graphics/java/android/graphics/
PathMeasure.java 83 * @param tan If not null, returns the sampled tangent (x==[0], y==[1])
86 public boolean getPosTan(float distance, float pos[], float tan[]) {
88 tan != null && tan.length < 2) {
91 return native_getPosTan(native_instance, distance, pos, tan);
144 private static native boolean native_getPosTan(int native_instance, float distance, float pos[], float tan[]);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tan.c 16 /* tan(x)
24 * Let S,C and T denote the sin, cos and tan respectively on
29 * n sin(x) cos(x) tan(x)
38 * Let trig be any of sin, cos, or tan.
54 tan(double x) function
70 /* tan(Inf or NaN) is NaN */
82 __weak_reference(tan, tanl);
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 45 using ::tan;
  /bionic/libstdc++/include/
cmath 47 using ::tan;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 47 using ::tan;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.transcendentals/
tan.pass.cpp 14 // tan(const complex<T>& x);
25 assert(tan(c) == x);
43 std::complex<double> r = tan(x[i]);
  /ndk/sources/cxx-stl/system/include/
cmath 47 using ::tan;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 45 using ::tan;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 45 using ::tan;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 47 using ::tan;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 47 using ::tan;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 47 using ::tan;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 47 using ::tan;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 47 using ::tan;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 47 using ::tan;
  /external/skia/legacy/src/core/
SkCordic.cpp 33 int32_t tan = *tanPtr++; local
37 z -= tan;
41 z += tan;
87 int32_t tan = *tanPtr++; local
91 z -= tan;
95 z += tan;
158 int32_t tan = *tanPtr++; local
166 z -= tan;
170 z += tan;
224 // tan
    [all...]
  /external/skia/src/core/
SkCordic.cpp 31 int32_t tan = *tanPtr++; local
35 z -= tan;
39 z += tan;
85 int32_t tan = *tanPtr++; local
89 z -= tan;
93 z += tan;
156 int32_t tan = *tanPtr++; local
164 z -= tan;
168 z += tan;
220 // tan
    [all...]
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 79 static jboolean getPosTan(JNIEnv* env, jobject clazz, PathMeasurePair* pair, jfloat dist, jfloatArray pos, jfloatArray tan) {
82 SkScalar* tanPtr = tan ? tmpTan : NULL;
91 if (tan) {
92 convertTwoElemFloatArray(env, tan, tmpTan);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
tan_valarray.pass.cpp 16 // tan(const valarray<T>& x);
46 std::valarray<T> v3 = tan(v1);
  /external/clang/test/CodeGen/
libcall-declarations.c 71 double tan(double);
86 sqrtf, tan, tanl, tanf, trunc, truncl, truncf
155 // CHECK-NOERRNO: declare double @tan(double) [[NUW]]
  /external/stlport/test/unit/
valarray_test.cpp 49 tmp = tan(darray);
75 tmp = tan(farray);
102 tmp = tan(ldarray);
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 49 tmp = tan(darray);
75 tmp = tan(farray);
102 tmp = tan(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 49 tmp = tan(darray);
75 tmp = tan(farray);
102 tmp = tan(ldarray);

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 91011