HomeSort by relevance Sort by last modified time
    Searched refs:cos (Results 1 - 25 of 291) 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...]
  /frameworks/base/core/java/android/util/
FloatMath.java 64 public static native float cos(float angle); method in class:FloatMath
  /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...]
  /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);
complex_trig.cpp 70 ::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(im2)
    [all...]
  /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...]
  /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);
  /external/webkit/Source/JavaScriptCore/wtf/
Complex.h 41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
  /frameworks/base/core/java/android/view/animation/
AccelerateDecelerateInterpolator.java 36 return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
  /cts/apps/CtsVerifier/jni/audioquality/
GenerateSinusoid.cpp 57 float gain = (0.5 - (0.5 * cos((0.5 + i) * M_PI / numRamp)));
61 float gain = (0.5 - (0.5 * cos((0.5 + (numSamples - i - 1))
  /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);
  /bionic/libm/i387/
s_cos.S 40 ENTRY(cos) function
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 43 using ::cos;
  /cts/tests/tests/util/src/android/util/cts/
FloatMathTest.java 43 method = "cos",
73 // cos
74 assertEquals(0.964966f, FloatMath.cos(50));
75 assertEquals(0.69925081f, FloatMath.cos(150));
76 assertEquals(0.964966f, FloatMath.cos(-50));
  /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 */
e_jn.c 83 * Jn(x) = cos(x-(2n+1)*pi/4)*sqrt(2/x*pi)
85 * Let s=sin(x), c=cos(x),
88 * n sin(xn)*sqt2 cos(xn)*sqt2
96 case 0: temp = cos(x)+sin(x); break;
97 case 1: temp = -cos(x)+sin(x); break;
98 case 2: temp = -cos(x)-sin(x); break;
99 case 3: temp = cos(x)-sin(x); break;
233 * Jn(x) = cos(x-(2n+1)*pi/4)*sqrt(2/x*pi)
235 * Let s=sin(x), c=cos(x),
238 * n sin(xn)*sqt2 cos(xn)*sqt
    [all...]
  /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
  /prebuilt/ndk/android-ndk-r5/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
  /prebuilt/ndk/android-ndk-r6/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
  /ndk/sources/cxx-stl/stlport/src/
complex_trig.cpp 70 ::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(im2)
    [all...]
  /bionic/libstdc++/include/
cmath 45 using ::cos;

Completed in 2051 milliseconds

1 2 3 4 5 6 7 8 91011>>