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

  /external/v8/test/mjsunit/
setter-on-constructor-prototype.js 31 function C1() {
34 C1.prototype = { set x(value) { this.y = 23; } };
36 %ToFastProperties(C1.prototype);
40 var c1 = new C1();
41 assertEquals("undefined", typeof c1.x);
42 assertEquals(23, c1.y);
  /bionic/libm/src/
k_cosf.c 30 C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */
46 return ((one+z*C0) + w*C1) + (w*z)*r;
k_cos.c 30 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
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
62 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
75 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/v8/test/mjsunit/bugs/
618.js 29 function C1() {
32 var c1 = new C1();
33 assertEquals(23, c1.x);
34 assertEquals("undefined", typeof c1.y);
38 C1.prototype = { set x(value) { this.y = 23; } };
39 var c1 = new C1();
40 assertEquals("undefined", typeof c1.x);
41 assertEquals(23, c1.y)
    [all...]
  /external/fdlibm/
k_cos.c 26 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
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
57 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
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;
44 LTC_ARGCHK((C1 = ltc_ecc_new_point()) != NULL);
81 /* now, compute kA*A + kB*B = C1 using the older method */
82 DO(ltc_mp.ecc_ptmul(kA, A, C1, modulus, 0));
84 DO(ltc_mp.ecc_ptadd(C1, C2, C1, modulus, mp));
85 DO(ltc_mp.ecc_map(C1, modulus, mp));
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))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GOFBBlockCipher.java 24 static final int C1 = 16843012; //00000001000000010000000100000100
171 N4 += C1;
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 40 private static final float C1 = 0.0334196f;
78 final float trueAnomaly = meanAnomaly + C1 * FloatMath.sin(meanAnomaly) + C2
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 275 CompilationUnit C1 = new CompilationUnit("a.C",
279 IApi toApi = convert(C1);
289 CompilationUnit C1 = new CompilationUnit("a.C",
293 IApi toApi = convert(C1);
305 CompilationUnit C1 = new CompilationUnit("a.C",
311 IApi toApi = convert(C1);
323 CompilationUnit C1 = new CompilationUnit("a.C",
329 IApi toApi = convert(C1);
343 CompilationUnit C1 = new CompilationUnit("a.C",
351 IApi toApi = convert(C1);
    [all...]
MethodCompareTests.java 206 CompilationUnit C1 = new CompilationUnit("a.C0",
212 IApi toApi = convert(C1);
224 CompilationUnit C1 = new CompilationUnit("a.C0",
228 IApi toApi = convert(C1);
245 CompilationUnit C1 = new CompilationUnit("a.C0",
249 IApi toApi = convert(C1, I);
266 CompilationUnit C1 = new CompilationUnit("a.C0",
270 IApi toApi = convert(C1, I);
287 CompilationUnit C1 = new CompilationUnit("a.C0",
291 IApi toApi = convert(C1, I)
    [all...]
  /external/bluetooth/bluez/sbc/
sbc_tables.h 380 #define C1 1.3056875580
386 F(5.36548976E-04 * C1), F(2.73370904E-03 * C1),
390 F(2.04385087E-02 * C1), F(3.21939290E-02 * C1),
394 F(1.94987841E-01 * C1), F(2.81828203E-01 * C1),
398 -F(7.76463494E-02 * C1), F(6.13245186E-03 * C1),
402 -F(3.06012286E-03 * C1), F(3.89205149E-03 * C1)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 335 private int C0, C1, C2, C3;
431 C1 = (bytes[index++] & 0xff);
432 C1 |= (bytes[index++] & 0xff) << 8;
433 C1 |= (bytes[index++] & 0xff) << 16;
434 C1 |= bytes[index++] << 24;
458 bytes[index++] = (byte)C1;
459 bytes[index++] = (byte)(C1 >> 8);
460 bytes[index++] = (byte)(C1 >> 16);
461 bytes[index++] = (byte)(C1 >> 24);
480 C1 ^= KW[0][1]
    [all...]
AESFastEngine.java     [all...]
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 68 // C1 = a*t + (3-2*a)*t - (2-a)*t
157 // C1 = -a*t + (2*a+3)*t - (a+2)*t
159 float C1(float t)
206 real1 = C1(phase_offset_real) * 4096.0;
438 g_c_w[i*4+2] = (C1(phase_offset) * 4096.0);
446 g_c_h[i*4+1] = (C1(phase_offset) * 4096.0);
455 g_c_h_uv[i*4+1] = (C1(phase_offset) * 4096.0);
  /external/speex/libspeex/
math_approx.h 132 #define C1 21173
138 #define C1 21173
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
309 #define C1 0.9999932946f
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 45 public long toMicros(long d) { return d/(C1/C0); }
55 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
57 public long toMillis(long d) { return d/(C2/C1); }
58 public long toSeconds(long d) { return d/(C3/C1); }
59 public long toMinutes(long d) { return d/(C4/C1); }
60 public long toHours(long d) { return d/(C5/C1); }
61 public long toDays(long d) { return d/(C6/C1); }
63 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
67 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1));
    [all...]
  /external/libvpx/vp8/encoder/
ssim.c 15 #define C1 (float)(64 * 64 * 0.01*255*0.01*255)
56 return (2 * mu_xy + C1) * (2 * theta_xy + C2) / ((mu_x2 + mu_y2 + C1) * (theta_x2 + theta_y2 + C2));
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectOutputStreamTest.java 270 private static class C1 implements java.io.Serializable {
293 return new C1();
    [all...]

Completed in 709 milliseconds