Searched defs:cos (Results 1 - 24 of 24) sorted by relevance

/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h34 * \sa pow(), log(), sin(), cos()
76 cos() const function
87 * \sa cos(), asin()
100 * \sa cos(), asin()
126 * \sa cos(), sin()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DStemFunction.h30 static Scalar cos(Scalar x, int n) function in class:Eigen::StdStemFunctions
35 res = std::cos(x);
41 res = -std::cos(x);
59 res = std::cos(x);
65 res = -std::cos(x);
H A DMatrixFunction.h565 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::cos() const function in class:Eigen::MatrixBase
569 return MatrixFunctionReturnValue<Derived>(derived(), StdStemFunctions<ComplexScalar>::cos);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFloatMath.java42 public static float cos(float angle) { method in class:ShadowFloatMath
43 return (float) Math.cos(angle);
/external/aac/libFDK/src/
H A DFDK_trigFcts.cpp316 void fixp_cos_sin (FIXP_DBL x, int scale, FIXP_DBL *cos, FIXP_DBL *sin) argument
323 *cos = cosine - error0;
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h100 /** \deprecated ArrayBase::cos() */
103 Cwise<ExpressionType>::cos() const function in class:Eigen::Cwise
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
H A DTransportConnection.java36 CipherOutputStream cos; field in class:TransportConnection
75 this.cos = new CipherOutputStream(new NullCipher(), os);
99 cos.changeCipher(bc);
180 cos.write(send_packet_header_buffer, 0, 5);
181 cos.write(message, off, len);
182 cos.write(send_padding_buffer, 0, padd_len);
192 cos.writePlain(send_mac_buffer, 0, send_mac_buffer.length);
195 cos.flush();
/external/stlport/src/
H A Dcomplex_trig.cpp70 ::cos(z._M_re) * ::sinh(z._M_im));
85 // cos
88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im),
92 _STLP_DECLSPEC complex<float> _STLP_CALL cos(const complex<float>& z) function
95 _STLP_DECLSPEC complex<double> _STLP_CALL cos(const complex<double>& z) function
99 _STLP_DECLSPEC complex<long double> _STLP_CALL cos(const complex<long double>& z) function
113 _Tp den = ::cos(re2) + ::cosh(im2);
133 return complex<_Tp>(::sinh(z._M_re) * ::cos(z._M_im),
152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im),
176 _Tp den = ::cosh(re2) + ::cos(im
[all...]
/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java60 * Equivalent to: cos((2 * PI) / (QUARTER_CIRCLE * 4)) * 2
243 public static int cos(int n) { method in class:Fixed
266 return div(sin(n), cos(n));
/external/ceres-solver/include/ceres/
H A Djet.h408 inline double cos (double x) { return std::cos(x); } function in namespace:ceres
450 // cos(a + h) ~= cos(a) - sin(a) h
452 Jet<T, N> cos(const Jet<T, N>& f) { function in namespace:ceres
454 g.a = cos(f.a);
469 // sin(a + h) ~= sin(a) + cos(a) h
474 T cos_a = cos(f.a);
637 template<typename T, int N> inline Jet<T, N> ei_cos (const Jet<T, N>& x) { return cos(x); } // NOLINT
/external/skia/legacy/src/core/
H A DSkCordic.cpp58 SkFixed cos = kFixedInvGain1; local
59 SkCircularRotation(&cos, &sin, &scaledRadians);
63 scaled.setMul(cos, 0x6488d);
72 int32_t cos; local
73 int32_t sin = SkCordicSinCos(a, &cos);
74 return SkFixedDiv(sin, cos);
223 SkDebugf("cos error : angle = %g ; cos = %g ; cordic = %g\n", angle, cosine, cosine2);
/external/skia/src/core/
H A DSkCordic.cpp56 SkFixed cos = kFixedInvGain1; local
57 SkCircularRotation(&cos, &sin, &scaledRadians);
61 scaled.setMul(cos, 0x6488d);
70 int32_t cos; local
71 int32_t sin = SkCordicSinCos(a, &cos);
72 return SkFixedDiv(sin, cos);
219 SkDebugf("cos error : angle = %g ; cos = %g ; cordic = %g\n", angle, cosine, cosine2);
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
366 _STLP_DMATH_INLINE(cos)
395 # if defined (cos)
396 inline double __stlp_cos(double __x) { return cos(__x); }
397 # undef cos macro
398 inline double cos(double __x) { return __stlp_cos(__x); } function
437 _STLP_DEF_MATH_INLINE(cos, cos)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
559 using ::cos;
[all...]
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fbench.c16 cos, tan, etc, will be used as supplied by <math.h>. If it is
348 #define cos I_cos macro
438 /* cos(x) Return cosine, x in radians, by identity */
440 static double cos(x) function
454 return sin(x) / cos(x);
670 cos(-rang)) / (from_index *
671 cos(axis_slope_angle)));
/external/valgrind/main/perf/
H A Dfbench.c12 cos, tan, etc, will be used as supplied by <math.h>. If it is
344 #define cos I_cos macro
434 /* cos(x) Return cosine, x in radians, by identity */
436 static double cos(x) function
450 return sin(x) / cos(x);
666 cos(-rang)) / (from_index *
667 cos(axis_slope_angle)));
/external/clang/lib/Headers/
H A Dtgmath.h237 // cos
245 __tg_cos(double __x) {return cos(__x);}
263 #undef cos macro
264 #define cos(__x) __tg_cos(__tg_promote1((__x))(__x)) macro
/external/clang/lib/include/
H A Dtgmath.h237 // cos
245 __tg_cos(double __x) {return cos(__x);}
263 #undef cos macro
264 #define cos(__x) __tg_cos(__tg_promote1((__x))(__x)) macro
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java522 return (float) Math.cos(Math.PI / 2 - fValue);
526 * Returns cos of a value.
531 * @see java.lang.Math#cos(double)
537 public static float cos(float v) { method in class:FastMath
538 return (float) Math.cos(v);
807 float a = sphereCoords.x * FastMath.cos(sphereCoords.z);
808 store.x = a * FastMath.cos(sphereCoords.y);
843 float a = sphereCoords.x * FastMath.cos(sphereCoords.z);
844 store.x = a * FastMath.cos(sphereCoords.y);
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h339 friend const mpreal cos(const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
1768 inline const mpreal cos(const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar ... .core.internal.runtime.auth.CipherOutputStream cos java.io.ObjectOutputStream oos public boolean setPassword (java ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h154 /// double cos(double x);
155 cos, enumerator in enum:llvm::LibFunc::Func
678 case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 559 milliseconds