/prebuilts/ndk/6/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/7/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/8/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/9/sources/cxx-stl/EH/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
|
vcpu_fnfns.c | 70 printf(" tanD(%+20.13e) = %+20.13e\n", d, tan(d));
|
/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)
|
/frameworks/rs/cpu_ref/ |
rsCpuRuntimeMathFuncs.cpp | 84 IMPORT_F32_FN_F32(tan)
|
/external/fonttools/Lib/fontTools/misc/ |
transform.py | 179 return self.transform((1, math.tan(y), math.tan(x), 1, 0, 0))
|
/external/skia/samplecode/ |
SampleQuadStroker.cpp | 294 SkPoint pos, tan; local 296 if (meas.getPosTan(dist, &pos, &tan)) { 297 tan.scale(radius); 298 tan.rotateCCW(); 299 canvas->drawLine(pos.x() + tan.x(), pos.y() + tan.y(), 300 pos.x() - tan.x(), pos.y() - tan.y(), paint);
|
/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);
|
/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");
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
LevenbergMarquardtEstimator.java | 717 final double tan = lmDiag[k] / rkk; local 718 cos = 1.0 / FastMath.sqrt(1.0 + tan * tan); 719 sin = cos * tan;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
LevenbergMarquardtOptimizer.java | 718 final double tan = lmDiag[k] / rkk; local 719 cos = 1.0 / FastMath.sqrt(1.0 + tan * tan); 720 sin = cos * tan; [all...] |
/external/icu/icu4c/source/i18n/ |
astro.cpp | 473 double tanB = tan(eclipLat); 606 return 2.0 * ::atan( ::tan(E/2) * ::sqrt( (1+eccentricity) 792 // double tanL = ::tan(fLatitude); 793 // double H = ::acos(-tanL * ::tan(pos1.declination)); 796 // H = ::acos(-tanL * ::tan(pos2.declination)); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CalendarAstronomer.java | 452 double tanB = Math.tan(eclipLat); 731 // double tanL = Math.tan(fLatitude); 732 // double H = Math.acos(-tanL * Math.tan(pos1.declination)); 735 // H = Math.acos(-tanL * Math.tan(pos2.declination)); [all...] |
/frameworks/base/opengl/java/android/opengl/ |
GLU.java | 113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0));
|
/ndk/sources/android/support/src/ |
math_support.c | 66 __attribute__((weak)) long double tanl(long double x) { return tan((double)x); }
|
/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));
|