HomeSort by relevance Sort by last modified time
    Searched defs:C2 (Results 1 - 17 of 17) sorted by null

  /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/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);
  /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/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/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);