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

1 2 3

  /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)))));
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
TimeUnit.java 46 public long toMicros(long d) { return d/(C1/C0); }
57 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
59 public long toMillis(long d) { return d/(C2/C1); }
60 public long toSeconds(long d) { return d/(C3/C1); }
61 public long toMinutes(long d) { return d/(C4/C1); }
62 public long toHours(long d) { return d/(C5/C1); }
63 public long toDays(long d) { return d/(C6/C1); }
65 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
70 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1));
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
AESLightEngine.java 233 private int C0, C1, C2, C3;
329 C1 = (bytes[index++] & 0xff);
330 C1 |= (bytes[index++] & 0xff) << 8;
331 C1 |= (bytes[index++] & 0xff) << 16;
332 C1 |= bytes[index++] << 24;
356 bytes[index++] = (byte)C1;
357 bytes[index++] = (byte)(C1 >> 8);
358 bytes[index++] = (byte)(C1 >> 16);
359 bytes[index++] = (byte)(C1 >> 24);
377 C1 ^= KW[0][1]
    [all...]
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/bluetooth/bluez/sbc/
sbc_tables.h 379 #define C1 1.3056875580
385 F(5.36548976E-04 * C1), F(2.73370904E-03 * C1),
389 F(2.04385087E-02 * C1), F(3.21939290E-02 * C1),
393 F(1.94987841E-01 * C1), F(2.81828203E-01 * C1),
397 -F(7.76463494E-02 * C1), F(6.13245186E-03 * C1),
401 -F(3.06012286E-03 * C1), F(3.89205149E-03 * C1)
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
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...]
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...]
  /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...]
  /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
  /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)));
  /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/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);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
GOFBBlockCipher.java 24 static final int C1 = 16843012; //00000001000000010000000100000100
171 N4 += C1;
  /system/bluetooth/data/
auto_pairing.conf 13 AddressBlacklist=00:02:C7,00:16:FE,00:19:C1,00:1B:FB,00:1E:3D,00:21:4F,00:23:06,00:24:33,00:A0:79,00:0E:6D,00:13:E0,00:21:E8,00:60:57,00:0E:9F,00:12:1C,00:18:91,00:18:96,00:13:04,00:16:FD,00:22:A0,00:0B:4C,00:60:6F,00:23:3D,00:C0:59,00:0A:30,00:1E:AE,00:1C:D7,00:80:F0,00:12:8A,00:09:93
  /external/icu4c/data/sprep/
rfc3491.txt 239 12C1; ; UNASSIGNED
487 00C1; 00E1; MAP
703 03A1; 03C1; MAP
735 03F1; 03C1; MAP
831 04C1; 04C2; MAP
1162 1FE4; 03C1 0313; MAP
1241 24C1; 24DB; MAP
1292 33C1; 006D 03C9; MAP
1716 1D6B8; 03C1; MAP
1742 1D6F2; 03C1; MA
    [all...]
rfc3530csci.txt 238 12C1; ; UNASSIGNED
486 00C1; 00E1; MAP
702 03A1; 03C1; MAP
734 03F1; 03C1; MAP
830 04C1; 04C2; MAP
1161 1FE4; 03C1 0313; MAP
1240 24C1; 24DB; MAP
1291 33C1; 006D 03C9; MAP
1715 1D6B8; 03C1; MAP
1741 1D6F2; 03C1; MA
    [all...]
rfc3722.txt 239 12C1; ; UNASSIGNED
487 00C1; 00E1; MAP
703 03A1; 03C1; MAP
735 03F1; 03C1; MAP
831 04C1; 04C2; MAP
1162 1FE4; 03C1 0313; MAP
1241 24C1; 24DB; MAP
1292 33C1; 006D 03C9; MAP
1716 1D6B8; 03C1; MAP
1742 1D6F2; 03C1; MA
    [all...]
rfc3920node.txt 239 12C1; ; UNASSIGNED
487 00C1; 00E1; MAP
703 03A1; 03C1; MAP
735 03F1; 03C1; MAP
831 04C1; 04C2; MAP
1162 1FE4; 03C1 0313; MAP
1241 24C1; 24DB; MAP
1292 33C1; 006D 03C9; MAP
1716 1D6B8; 03C1; MAP
1742 1D6F2; 03C1; MA
    [all...]
rfc4518ci.txt 238 12C1; ; UNASSIGNED
454 00C1; 00E1; MAP
670 03A1; 03C1; MAP
702 03F1; 03C1; MAP
798 04C1; 04C2; MAP
1129 1FE4; 03C1 0313; MAP
1208 24C1; 24DB; MAP
1259 33C1; 006D 03C9; MAP
1683 1D6B8; 03C1; MAP
1709 1D6F2; 03C1; MA
    [all...]
  /external/icu4c/test/testdata/
nfs4_cis_prep.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]
nfs4_cs_prep_ci.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]
nfs4_mixed_prep_s.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]

Completed in 1151 milliseconds

1 2 3