HomeSort by relevance Sort by last modified time
    Searched refs:cos (Results 251 - 275 of 679) sorted by null

<<11121314151617181920>>

  /external/replicaisland/src/com/replica/replicaisland/
LauncherComponent.java 108 mLaunchDirection.set((float)Math.sin(mAngle), (float)Math.cos(mAngle));
  /external/skia/include/core/
SkFloatingPoint.h 35 #define sk_float_cos(x) (float)::cos(x)
  /external/valgrind/main/memcheck/tests/
vcpu_fnfns.c 58 printf(" cosD(%+20.13e) = %+20.13e\n", d, cos(d));
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 122 float cosine = FloatMath.cos(radians);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
StraightenFilter.java 121 float cosTheta = (float) Math.cos(mAngle * DEGREE_TO_RADIAN);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
LocationCluster.java 131 mCenter[i] = cluster.mCenter[i] * Math.cos(radian) +
  /libcore/luni/src/main/native/
java_lang_StrictMath.cpp 129 NATIVE_METHOD(StrictMath, cos, "!(D)D"),
  /libcore/luni/src/test/java/libcore/java/lang/
IntrinsicTest.java 108 Math.cos(Math.PI);
109 Math.class.getMethod("cos", double.class).invoke(null, Math.PI);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
cosh.pass.cpp 79 assert(std::signbit(r.real()) == std::signbit(cos(x[i].imag())));
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
MotionEventHelper.java 108 v[1] = -FloatMath.cos(angleRadians);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 602 int rx = (int) (Math.cos(angle) * (ax-x1) - Math.sin(angle) * (ay-y1) + x1);
603 int ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1);
607 rx = (int) (Math.cos(angle) * (ax-x1) - Math.sin(angle) * (ay-y1) + x1);
608 ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
SincResampler.cpp 122 double window = a0 - a1 * cos(2.0 * piDouble * x) + a2 * cos(4.0 * piDouble * x);
  /external/chromium_org/ui/gfx/
matrix3_f.cc 169 eigenvalues[0] = q + 2 * p * static_cast<float>(cos(phi));
171 static_cast<float>(cos(phi + 2.0 * M_PI / 3.0));
  /external/chromium_org/v8/test/mjsunit/compiler/
minus-zero.js 84 var double_one = Math.cos(0);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 752 float newX = FastMath.cos(angle) * x - FastMath.sin(angle) * y;
753 float newY = FastMath.sin(angle) * x + FastMath.cos(angle) * y;
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java 339 box.setLocalTranslation(v.x + FastMath.sin(time * mult1) * 20, v.y + (FastMath.sin(time * mult1) * FastMath.cos(time * mult1) * 20), v.z + FastMath.cos(time * mult2) * 20);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 164 /// double cos(double x);
165 cos, enumerator in enum:llvm::LibFunc::Func
690 case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 299 int pointY = mYCenter - (int) (mLineLength * Math.cos(mSelectionRadians));
315 pointY = mYCenter - (int) (lineLength * Math.cos(mSelectionRadians));
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 111 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 111 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 122 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 122 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 111 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 111 #define cos(z) __TGMATH_CPLX(z, cos, ccos) macro
  /external/ceres-solver/include/ceres/
jet.h 413 inline double cos (double x) { return std::cos(x); } function in namespace:ceres
462 // cos(a + h) ~= cos(a) - sin(a) h
464 Jet<T, N> cos(const Jet<T, N>& f) { function in namespace:ceres
466 g.a = cos(f.a);
482 // sin(a + h) ~= sin(a) + cos(a) h
487 const T cos_a = cos(f.a);
703 template<typename T, int N> inline Jet<T, N> ei_cos (const Jet<T, N>& x) { return cos(x); } // NOLINT

Completed in 3240 milliseconds

<<11121314151617181920>>