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

1 23 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
transcendentals.js 38 assertTrue(Math.tan(x) != Math.tan(y));
  /external/skia/src/animator/
SkDisplayMath.cpp 52 SK_FUNCTION(tan)
92 (SkFunctionParamType) SkType_Float, // tan
124 SK_MEMBER_FUNCTION(tan, Float)
206 case SK_FUNCTION(tan):
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
__clang_cuda_math_forward_declares.h 177 __DEVICE__ double tan(double);
178 __DEVICE__ float tan(float);
255 using ::tan;
  /ndk/sources/cxx-stl/stlport/src/
complex_trig.cpp 104 // tan
118 _STLP_DECLSPEC complex<float> _STLP_CALL tan(const complex<float>& z) function
121 _STLP_DECLSPEC complex<double> _STLP_CALL tan(const complex<double>& z) function
125 _STLP_DECLSPEC complex<long double> _STLP_CALL tan(const complex<long double>& z) function
  /external/v8/test/mjsunit/wasm/
asm-wasm-stdlib.js 64 var StdlibMathTan = stdlib.Math.tan;
167 var tan = stdlib.Math.tan;
195 function tan_f64(x) { x = +x; return +tan(x); }
303 tan: ['f64'],
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
380 _STLP_DMATH_INLINE(tan)
451 _STLP_DEF_MATH_INLINE(tan, tan)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
592 using ::tan;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
380 _STLP_DMATH_INLINE(tan)
451 _STLP_DEF_MATH_INLINE(tan, tan)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
592 using ::tan;
  /external/valgrind/memcheck/tests/
vcpu_fbench.c 16 cos, tan, etc, will be used as supplied by <math.h>. If it is
263 #define cot(x) (1.0 / tan(x))
349 #define tan I_tan macro
449 /* tan(x) Return tangent, x in radians, by identity */
451 static double tan(x) function
  /external/valgrind/perf/
fbench.c 12 cos, tan, etc, will be used as supplied by <math.h>. If it is
259 #define cot(x) (1.0 / tan(x))
345 #define tan I_tan macro
445 /* tan(x) Return tangent, x in radians, by identity */
447 static double tan(x) function
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
CauchyDistributionImpl.java 147 ret = median + scale * FastMath.tan(FastMath.PI * (p - .5));
  /external/eigen/Eigen/src/Core/
GlobalFunctions.h 47 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(tan,scalar_tan_op)
  /prebuilts/go/darwin-x86/src/math/
stubs_arm64.s 87 TEXT ·Tan(SB),NOSPLIT,$0
88 B ·tan(SB)
stubs_ppc64x.s 90 TEXT ·Tan(SB),NOSPLIT,$0
91 BR ·tan(SB)
  /prebuilts/go/linux-x86/src/math/
stubs_arm64.s 87 TEXT ·Tan(SB),NOSPLIT,$0
88 B ·tan(SB)
stubs_ppc64x.s 90 TEXT ·Tan(SB),NOSPLIT,$0
91 BR ·tan(SB)
  /art/test/123-inline-execute2/src/
Main.java 37 System.out.println("Math.tan(" + d + ") = "
38 + String.format(Locale.US, "%.12f", Math.tan(d)));
87 System.out.println("StrictMath.tan(" + d + ") = " + StrictMath.tan(d));
  /external/fonttools/Lib/fontTools/misc/
transform.py 179 return self.transform((1, math.tan(y), math.tan(x), 1, 0, 0))
  /external/opencv3/modules/viz/src/
types.cpp 108 focal_ = Vec2f(principal_point_[0] / tan(fov_[0]*0.5f), principal_point_[1] / tan(fov_[1]*0.5f));
  /external/valgrind/memcheck/tests/amd64/
more_x87_fp.c 5 gcc4 really does generate all the sin cos tan stuff as
53 printf("a=%f tan(a)=%f\n", a, tan(a));
60 printf("a=%f atan(tan(a))=%f\n", a, atan(tan(a)));
more_x87_fp.stdout.exp 8 a=2.000000 tan(a)=-2.185040
14 a=2.000000 atan(tan(a))=-1.141593
22 a=1.400000 tan(a)=5.797884
28 a=1.400000 atan(tan(a))=1.400000
  /external/valgrind/memcheck/tests/x86/
more_x86_fp.c 43 printf("a=%f tan(a)=%f\n", a, tan(a));
50 printf("a=%f atan(tan(a))=%f\n", a, atan(tan(a)));
more_x86_fp.stdout.exp 9 a=2.000000 tan(a)=-2.185040
15 a=2.000000 atan(tan(a))=-1.141593
24 a=1.400000 tan(a)=5.797884
30 a=1.400000 atan(tan(a))=1.400000
  /frameworks/base/core/java/android/util/
MathUtils.java 151 public static float tan(float angle) { method in class:MathUtils
152 return (float) Math.tan(angle);
  /libcore/ojluni/src/main/native/
Math.c 42 return tan(d);
169 NATIVE_METHOD(Math, tan, "!(D)D"),
  /external/v8/test/webkit/
math.js 255 shouldBe("Math.tan(NaN)", "NaN");
256 shouldBe("Math.tan(0)", "0");
257 shouldBe("Math.tan(-0)", "-0");
258 shouldBe("Math.tan(Infinity)", "NaN");
259 shouldBe("Math.tan(-Infinity)", "NaN");

Completed in 1189 milliseconds

1 23 4 5 6 7 8 91011>>