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

1 2 3 4 5 6 7

  /bionic/libm/x86/
s_tan.S 94 // tan(NaN) = quiet NaN, and raise invalid exception
95 // tan(INF) = NaN and raise invalid exception
96 // tan(+/-0) = +/-0
116 # -- Begin tan
117 ENTRY(tan) function
283 END(tan)
284 # -- End tan
287 ALIAS_SYMBOL(tanl, tan);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_tan.c 18 /* tan(x)
26 * Let S,C and T denote the sin, cos and tan respectively on
31 * n sin(x) cos(x) tan(x)
40 * Let trig be any of sin, cos, or tan.
52 tan(double x) function
64 /* tan(Inf or NaN) is NaN */
  /prebuilts/go/darwin-x86/src/math/
tan.go 16 // tan.c
22 // double x, y, tan();
23 // y = tan( x );
62 // tan coefficients
76 // Tan returns the tangent of the radian argument x.
79 // Tan(±0) = ±0
80 // Tan(±Inf) = NaN
81 // Tan(NaN) = NaN
82 func Tan(x float64) float64
84 func tan(x float64) float64 func
    [all...]
  /prebuilts/go/linux-x86/src/math/
tan.go 16 // tan.c
22 // double x, y, tan();
23 // y = tan( x );
62 // tan coefficients
76 // Tan returns the tangent of the radian argument x.
79 // Tan(±0) = ±0
80 // Tan(±Inf) = NaN
81 // Tan(NaN) = NaN
82 func Tan(x float64) float64
84 func tan(x float64) float64 func
    [all...]
  /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);
  /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...]
  /frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
TaperedPathStroke.java 29 static float[] tan = {0,0}; field in class:TaperedPathStroke
48 pm.getPosTan(t, pos, tan);
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
  /external/skia/gm/
OverStroke.cpp 96 SkVector tan; local
98 if (meas.getPosTan(accum, &pos, &tan)) {
99 tan.scale(radius);
100 SkPointPriv::RotateCCW(&tan);
102 ribs.moveTo(pos.x() + tan.x(), pos.y() + tan.y());
103 ribs.lineTo(pos.x() - tan.x(), pos.y() - tan.y());
drawatlas.cpp 128 SkVector tan; local
129 if (!meas.getPosTan(xy[i].x() + offset, &pos, &tan)) {
131 tan.set(1, 0);
133 pos += SkVector::Make(-tan.fY, tan.fX) * baseline_offset;
135 xform[i].fSCos = tan.x();
136 xform[i].fSSin = tan.y();
137 xform[i].fTx = pos.x() - tan.y() * xy[i].y() - tan.x() * offset;
138 xform[i].fTy = pos.y() + tan.x() * xy[i].y() - tan.y() * offset
    [all...]
  /external/skqp/gm/
OverStroke.cpp 96 SkVector tan; local
98 if (meas.getPosTan(accum, &pos, &tan)) {
99 tan.scale(radius);
100 SkPointPriv::RotateCCW(&tan);
102 ribs.moveTo(pos.x() + tan.x(), pos.y() + tan.y());
103 ribs.lineTo(pos.x() - tan.x(), pos.y() - tan.y());
drawatlas.cpp 128 SkVector tan; local
129 if (!meas.getPosTan(xy[i].x() + offset, &pos, &tan)) {
131 tan.set(1, 0);
133 pos += SkVector::Make(-tan.fY, tan.fX) * baseline_offset;
135 xform[i].fSCos = tan.x();
136 xform[i].fSSin = tan.y();
137 xform[i].fTx = pos.x() - tan.y() * xy[i].y() - tan.x() * offset;
138 xform[i].fTy = pos.y() + tan.x() * xy[i].y() - tan.y() * offset
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 152 public static float tan(float angle) { method in class:MathUtils
153 return (float) Math.tan(angle);
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_cmath.h 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
  /external/crcalc/tests/src/com/hp/creals/
CRTest.java 114 UnaryCRFunction tan = UnaryCRFunction.tanFunction; local
128 check_eq(atan.execute(tan.execute(one)), one, "atan(tan(1) failed");
129 check_eq(atan.execute(tan.execute(one.negate())), one.negate(),
130 "atan(tan(-1) failed");
131 check_eq(tan.execute(atan.execute(huge)), huge,
132 "tan(atan(10**15)) failed");
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 62 float[] tan = { 1f }; local
64 mPathMeasure.getPosTan(distance, pos, tan);
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 52 * semantics are {@code sin}, {@code cos}, {@code tan},
132 public static native double tan(double a); method in class:StrictMath
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 50 #define tan jtan macro
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 148 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
255 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, tan)
394 using ::tan;
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
__clang_cuda_cmath.h 157 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
264 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, tan)
403 using ::tan;
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
__clang_cuda_cmath.h 157 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
264 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, tan)
403 using ::tan;
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
__clang_cuda_cmath.h 157 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
264 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, tan)
403 using ::tan;
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/
__clang_cuda_cmath.h 157 __DEVICE__ float tan(float __x) { return ::tanf(__x); } function
264 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, tan)
403 using ::tan;

Completed in 1187 milliseconds

1 2 3 4 5 6 7