HomeSort by relevance Sort by last modified time
    Searched refs:cos (Results 1 - 25 of 453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.7.js 24 ECMA Section: 15.8.2.7 cos( x )
35 var TITLE = "Math.cos(x)";
46 array[item++] = new TestCase( SECTION, "Math.cos.length", 1, Math.cos.length );
48 array[item++] = new TestCase( SECTION, "Math.cos()", Number.NaN, Math.cos() );
49 array[item++] = new TestCase( SECTION, "Math.cos(void 0)", Number.NaN, Math.cos(void 0) );
50 array[item++] = new TestCase( SECTION, "Math.cos(false)", 1, Math.cos(false) )
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 57 CipherOutputStream cos = new CipherOutputStream(tos); local
58 cos.write(data);
59 cos.flush();
73 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); local
75 cos.write(data[i]);
77 cos.flush();
91 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); local
92 cos.write(data);
93 cos.flush();
106 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()) local
149 CipherOutputStream cos = new CipherOutputStream(tos); local
165 CipherOutputStream cos = new CipherOutputStream(tos); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 67 CipherOutputStream cos = new CipherOutputStream(tos){}; local
68 cos.write(data);
69 cos.flush();
83 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); local
85 cos.write(data[i]);
87 cos.flush();
101 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); local
102 cos.write(data);
103 cos.flush();
110 cos.write(null)
123 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); local
166 CipherOutputStream cos = new CipherOutputStream(tos){}; local
182 CipherOutputStream cos = new CipherOutputStream(tos){}; local
204 CipherOutputStream cos = new CipherOutputStream(baos, c); local
    [all...]
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 6 double cos(double x);
18 double t3(double x) { return cos(x); }
20 // CHECK: cos
  /bionic/libm/
sincos.c 33 // -fno-builtin-sin or -fno-builtin-cos can disable sincos optimization,
41 *pcos = cos(x);
53 *pcos = cos(x);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Layer.java 53 float cos = (float)Math.cos(angle); local
58 m[1][1] = cos;
61 m[2][2] = cos;
66 m[0][0] = cos;
69 m[2][2] = cos;
74 m[0][0] = cos;
77 m[1][1] = cos;
  /external/stlport/src/
sincos.c 43 *pcos = cos(x);
55 *pcos = cos(x);
  /external/flac/libFLAC/
window.c 74 window[n] = (FLAC__real)(0.62f - 0.48f * fabs((float)n/(float)N+0.5f) + 0.38f * cos(2.0f * M_PI * ((float)n/(float)N+0.5f)));
83 window[n] = (FLAC__real)(0.42f - 0.5f * cos(2.0f * M_PI * n / N) + 0.08f * cos(4.0f * M_PI * n / N));
93 window[n] = (FLAC__real)(0.35875f - 0.48829f * cos(2.0f * M_PI * n / N) + 0.14128f * cos(4.0f * M_PI * n / N) - 0.01168f * cos(6.0f * M_PI * n / N));
115 window[n] = (FLAC__real)(1.0f - 1.93f * cos(2.0f * M_PI * n / N) + 1.29f * cos(4.0f * M_PI * n / N) - 0.388f * cos(6.0f * M_PI * n / N) + 0.0322f * cos(8.0f * M_PI * n / N))
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
FloatMathTest.java 36 // cos
37 assertEquals(0.964966f, FloatMath.cos(50));
38 assertEquals(0.69925081f, FloatMath.cos(150));
39 assertEquals(0.964966f, FloatMath.cos(-50));
  /external/webkit/Source/JavaScriptCore/wtf/
Complex.h 41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
  /frameworks/base/core/java/android/util/
FloatMath.java 64 public static native float cos(float angle); method in class:FloatMath
  /frameworks/base/core/java/android/view/animation/
AccelerateDecelerateInterpolator.java 36 return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
  /frameworks/base/core/tests/coretests/src/android/util/
FloatMathTest.java 52 assertEquals(1.0f, FloatMath.cos(0), 0);
53 assertEquals(0.5403023058681398f, FloatMath.cos(1), 0);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 79 /*package*/ static float cos(float angle) { method in class:FloatMath_Delegate
80 return (float)Math.cos(angle);
  /bionic/libm/i387/
s_cos.S 40 ENTRY(cos) function
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 43 using ::cos;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
swim.c 60 fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
61 fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
155 fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
156 fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
swim.c 60 fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
61 fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
155 fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
156 fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
swim.c 60 fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
61 fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
155 fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD);
156 fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD);
  /bionic/libm/src/
s_cos.c 17 /* cos(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 cos(double x) function
68 /* cos(Inf or NaN) is NaN */
  /external/libvorbis/test/
util.c 41 data [k] *= maximum * (0.5 - 0.5 * cos (2.0 * M_PI * k / ((len) - 1))) ;
  /external/stlport/stlport/stl/config/
_como.h 87 # define cosl cos
115 # define cosf cos
116 # define cosl cos
161 # define cosl cos
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 87 # define cosl cos
115 # define cosf cos
116 # define cosl cos
161 # define cosl cos
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 87 # define cosl cos
115 # define cosf cos
116 # define cosl cos
161 # define cosl cos
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 87 # define cosl cos
115 # define cosf cos
116 # define cosl cos
161 # define cosl cos

Completed in 1580 milliseconds

1 2 3 4 5 6 7 8 91011>>