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

1 2 3

  /bionic/libm/src/
k_cosf.c 31 C2 = -0x16c087e80f1e27.0p-62, /* -0.00138867637746099294692 */
45 r = C2+z*C3;
k_cos.c 34 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
38 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
63 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */
75 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/chromium/base/
raw_scoped_refptr_mismatch_checker.h 44 template <class A1, class B1, class C1, class A2, class B2, class C2>
46 Tuple3<A2, B2, C2> > {
49 ExpectsScopedRefptrButGetsRawPtr<C1, C2>::value) };
53 class A2, class B2, class C2, class D2>
55 Tuple4<A2, B2, C2, D2> > {
58 ExpectsScopedRefptrButGetsRawPtr<C1, C2>::value ||
63 class A2, class B2, class C2, class D2, class E2>
65 Tuple5<A2, B2, C2, D2, E2> > {
68 ExpectsScopedRefptrButGetsRawPtr<C1, C2>::value ||
74 class A2, class B2, class C2, class D2, class E2, class F2
    [all...]
scoped_ptr.h 125 // Forbid comparison of scoped_ptr types. If C2 != C, it totally doesn't
126 // make sense, and if C2 == C, it still doesn't make sense because you should
128 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
129 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
233 template <class C2> bool operator==(scoped_array<C2> const& p2) const;
234 template <class C2> bool operator!=(scoped_array<C2> const& p2) const
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 46 public long toMillis(long d) { return d/(C2/C0); }
52 int excessNanos(long d, long m) { return (int)(d - (m*C2)); }
57 public long toMillis(long d) { return d/(C2/C1); }
63 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
66 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
67 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); }
69 public long toSeconds(long d) { return d/(C3/C2); }
70 public long toMinutes(long d) { return d/(C4/C2); }
    [all...]
  /external/bluetooth/bluez/sbc/
sbc_tables.h 381 #define C2 1.3056875580
387 F(3.06012286E-03 * C2), F(3.89205149E-03 * C2),
391 F(7.76463494E-02 * C2), F(6.13245186E-03 * C2),
395 -F(1.94987841E-01 * C2), F(2.81828203E-01 * C2),
399 -F(2.04385087E-02 * C2), F(3.21939290E-02 * C2),
403 -F(5.36548976E-04 * C2), F(2.73370904E-03 * C2)
    [all...]
  /external/fdlibm/
k_cos.c 30 * |ieee_cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
34 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
58 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/webkit/WebKit/win/Interfaces/
IWebEmbeddedView.idl 35 uuid(F2771780-84C2-4684-8D52-D4F923E67F71),
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 335 private int C0, C1, C2, C3;
436 C2 = (bytes[index++] & 0xff);
437 C2 |= (bytes[index++] & 0xff) << 8;
438 C2 |= (bytes[index++] & 0xff) << 16;
439 C2 |= bytes[index++] << 24;
463 bytes[index++] = (byte)C2;
464 bytes[index++] = (byte)(C2 >> 8);
465 bytes[index++] = (byte)(C2 >> 16);
466 bytes[index++] = (byte)(C2 >> 24);
481 C2 ^= KW[0][2]
    [all...]
AESFastEngine.java     [all...]
  /external/dropbear/libtomcrypt/testprof/
ecc_test.c 36 ecc_point *G, *A, *B, *C1, *C2;
45 LTC_ARGCHK((C2 = ltc_ecc_new_point()) != NULL);
83 DO(ltc_mp.ecc_ptmul(kB, B, C2, modulus, 0));
84 DO(ltc_mp.ecc_ptadd(C1, C2, C1, modulus, mp));
88 DO(ltc_mp.ecc_mul2add(A, kA, B, kB, C2, modulus));
91 if ((mp_cmp(C1->x, C2->x) != LTC_MP_EQ) || (mp_cmp(C1->y, C2->y) != LTC_MP_EQ) || (mp_cmp(C1->z, C2->z) != LTC_MP_EQ)) {
98 ltc_ecc_del_point(C2);
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 41 private static final float C2 = 0.000349066f;
78 final float trueAnomaly = meanAnomaly + C1 * FloatMath.sin(meanAnomaly) + C2
  /external/v8/test/mjsunit/
setter-on-constructor-prototype.js 46 function C2() {
49 C2.prototype = { };
50 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
52 %ToFastProperties(C2.prototype.__proto__)
56 var c2 = new C2();
57 assertEquals("undefined", typeof c2.x);
58 assertEquals(23, c2.y);
uri.js 58 assertEquals('%C2%80', encodeURI(s3));
  /external/speex/libspeex/
math_approx.h 133 #define C2 -12627
139 #define C2 -12627
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
310 #define C2 -0.4999124376f
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
  /external/v8/test/mjsunit/bugs/
618.js 44 function C2() {
47 var c2 = new C2();
48 assertEquals(23, c2.x);
49 assertEquals("undefined", typeof c2.y);
53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
54 var c2 = new C2();
55 assertEquals("undefined", typeof c2.x);
56 assertEquals(23, c2.y)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GOFBBlockCipher.java 25 static final int C2 = 16843009; //00000001000000010000000100000001
170 N3 += C2;
  /external/protobuf/src/google/protobuf/stubs/
common.h 483 // Forbid comparison of scoped_ptr types. If C2 != C, it totally doesn't
484 // make sense, and if C2 == C, it still doesn't make sense because you should
486 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
487 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
573 template <class C2> bool operator==(scoped_array<C2> const& p2) const;
574 template <class C2> bool operator!=(scoped_array<C2> const& p2) const
    [all...]
  /external/v8/test/mjsunit/regress/
regress-244.js 32 [0x80, '%C2%80'],
33 [0x81, '%C2%81'],
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 97 // C2 = 1 - (3-a)*t + (2-a)*t
165 // C2 = 1 - (a+3)*t + (a+2)*t
167 float C2(float t)
212 real2 = C2(phase_offset_real) * 4096.0;
437 g_c_w[i*4+1] = (C2(phase_offset) * 4096.0);
447 g_c_h[i*4+2] = (C2(phase_offset) * 4096.0);
456 g_c_h_uv[i*4+2] = (C2(phase_offset) * 4096.0);
  /external/ppp/pppd/
md4.c 49 #define C2 013240474631 /* round 2 constant = sqrt(2) in octal */
51 /* C2 and C3 are from Knuth, The Art of Programming, Volume 2
79 #define gg(A,B,C,D,i,s) A = rot((A + g(B,C,D) + X[i] + C2),s)
  /external/libvpx/vp8/encoder/
ssim.c 16 #define C2 (float)(64 * 64 * 0.03*255*0.03*255)
56 return (2 * mu_xy + C1) * (2 * theta_xy + C2) / ((mu_x2 + mu_y2 + C1) * (theta_x2 + theta_y2 + C2));
  /external/clearsilver/
config.guess 673 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
676 else echo c2-convex-bsd
    [all...]
  /external/jpeg/
config.guess 422 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
425 else echo c2-convex-bsd
863 c2*)
866 else echo c2-convex-bsd
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectOutputStreamTest.java 272 return new C2();
276 private static class C2 implements java.io.Serializable {
    [all...]

Completed in 1024 milliseconds

1 2 3