HomeSort by relevance Sort by last modified time
    Searched refs:cos (Results 126 - 150 of 183) sorted by null

1 2 3 4 56 7 8

  /libcore/luni/src/main/java/java/lang/
StrictMath.java 280 * <li>{@code cos(+infinity) = NaN}</li>
281 * <li>{@code cos(-infinity) = NaN}</li>
282 * <li>{@code cos(NaN) = NaN}</li>
289 public static native double cos(double d); method in class:StrictMath
    [all...]
Math.java 259 * <li>{@code cos(+infinity) = NaN}</li>
260 * <li>{@code cos(-infinity) = NaN}</li>
261 * <li>{@code cos(NaN) = NaN}</li>
268 public static native double cos(double d); method in class:Math
    [all...]
  /external/quake/quake/src/WinQuake/
r_part.cpp 148 cy = cos(angle);
151 cp = cos(angle);
154 cr = cos(angle);
sv_user.cpp 67 cosval = cos(angleval);
  /external/stlport/stlport/stl/
_complex.h 878 _STLP_DECLSPEC complex<float> _STLP_CALL cos(const complex<float>&);
897 _STLP_DECLSPEC complex<double> _STLP_CALL cos(const complex<double>&);
917 _STLP_DECLSPEC complex<long double> _STLP_CALL cos(const complex<long double>&);
  /frameworks/base/tests/CoreTests/android/core/
MathTest.java 105 double r = Math.cos(Math.acos(ADJ / HYP));
196 * @tests java.lang.Math#cos(double)
200 // Test for method double java.lang.Math.cos(double)
201 assertEquals("Incorrect answer", 1.0, Math.cos(0), 0D);
202 assertEquals("Incorrect answer", 0.5403023058681398, Math.cos(1), 0D);
    [all...]
StrictMathTest.java 90 assertTrue("Returned incorrect arc cosine", StrictMath.cos(StrictMath
183 * @tests java.lang.StrictMath#cos(double)
187 // Test for method double java.lang.StrictMath.cos(double)
189 assertTrue("Returned incorrect cosine", StrictMath.cos(StrictMath
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 878 _STLP_DECLSPEC complex<float> _STLP_CALL cos(const complex<float>&);
897 _STLP_DECLSPEC complex<double> _STLP_CALL cos(const complex<double>&);
917 _STLP_DECLSPEC complex<long double> _STLP_CALL cos(const complex<long double>&);
  /external/libvpx/vp8/common/arm/armv6/
idct_v6.asm 153 mov r3, #0x00004E00 ; cos
236 mov r3, #0x00004E00 ; cos
  /external/skia/tests/
MathTest.cpp 403 double fc = cos(frads);
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 272 m_path.moveTo(QPointF(xc + radius * cos(sar),
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 311 float rightVolume = (float) Math.cos(radians);
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 113 int d = (int) Math.round(Math.cos(/*45deg*/Math.PI / 4D)
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 106 int d = (int) Math.round(Math.cos(/* 45deg */Math.PI / 4D) * (mDrawRect.width() / 2D));
  /external/srec/srec/cfront/
frontobj.c 501 coef = 0.54 - 0.46 * cos(f * (double)i);
632 (float)(cos((double)(i * (j + .5) * f)) / num_fb),
  /external/v8/src/
math.js 247 "cos", MathCos,
  /external/v8/test/mjsunit/
undeletable-functions.js 56 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor", "log",
  /external/speex/libspeex/
smallft.c 101 wa[i++]=cos(arg);
285 dcp=cos(arg);
855 dcp=cos(arg);
  /dalvik/vm/
InlineNative.c 592 * public static double cos(double)
600 pResult->d = cos(convert.dd);
737 "Ljava/lang/Math;", "cos", "(D)D" },
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 703 // cos(deg) is ddy component, sin(deg) is ddx component
724 ddy += Math.cos(radians) * accel;
    [all...]
  /external/bluetooth/bluez/compat/
fakehid.c 216 y = (int) (cos(angle) * -8);
  /external/qemu/android/skin/
trackball.c 143 cs = cos( rot->angle );
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
valarray_after.h 442 _DEFINE_EXPR_UNARY_FUNCTION(cos)
valarray_before.h 73 { return cos(__t); }
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MathTest.java 79 double r = Math.cos(Math.acos(ADJ / HYP));
309 * @tests java.lang.Math#cos(double)
312 // Test for method double java.lang.Math.cos(double)
313 assertEquals("Incorrect answer", 1.0, Math.cos(0), 0D);
314 assertEquals("Incorrect answer", 0.5403023058681398, Math.cos(1), 0D);
    [all...]

Completed in 1054 milliseconds

1 2 3 4 56 7 8