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

  /bionic/libm/src/
k_cosf.c 29 C0 = -0x1ffffffd0c5e81.0p-54, /* -0.499999997251031003120 */
46 return ((one+z*C0) + w*C1) + (w*z)*r;
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 224 CompilationUnit C0 = new CompilationUnit("a.C0",
226 "public class C0 implements I1{}");
227 CompilationUnit C0_I1 = new CompilationUnit("a.C0",
229 "public class C0 implements I1, I0{}");
230 IApi fromApi = convert(I0, I1, C0);
272 CompilationUnit C0 = new CompilationUnit("a.C",
278 IApi fromApi = convert(C0);
286 CompilationUnit C0 = new CompilationUnit("a.C",
292 IApi fromApi = convert(C0);
    [all...]
MethodCompareTests.java 138 CompilationUnit C0 = new CompilationUnit("a.C0",
140 "public class C0 {" +
143 CompilationUnit C0_E1 = new CompilationUnit("a.C0",
145 "public class C0{" +
148 IApi fromApi = convert(E0, E1, C0);
162 CompilationUnit C0 = new CompilationUnit("a.C0",
164 "public class C0 {" +
167 CompilationUnit C0_E1 = new CompilationUnit("a.C0",
    [all...]
  /external/bluetooth/bluez/sbc/
sbc_tables.h 379 #define C0 1.0932568993
385 F(0.00000000E+00 * C0), F(3.83720193E-03 * C0),
389 F(1.09137620E-02 * C0), F(2.58767811E-02 * C0),
393 F(1.35593274E-01 * C0), F(2.94315332E-01 * C0),
397 -F(1.35593274E-01 * C0), F(2.58767811E-02 * C0),
401 -F(1.09137620E-02 * C0), F(3.83720193E-03 * C0)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 335 private int C0, C1, C2, C3;
426 C0 = (bytes[index++] & 0xff);
427 C0 |= (bytes[index++] & 0xff) << 8;
428 C0 |= (bytes[index++] & 0xff) << 16;
429 C0 |= bytes[index++] << 24;
453 bytes[index++] = (byte)C0;
454 bytes[index++] = (byte)(C0 >> 8);
455 bytes[index++] = (byte)(C0 >> 16);
456 bytes[index++] = (byte)(C0 >> 24);
479 C0 ^= KW[0][0]
    [all...]
AESFastEngine.java     [all...]
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 47 // C0 = a*t - a*t
149 // C0 = -a*t + a*t
151 float C0(float t)
200 real0 = C0(phase_offset_real) * 4096.0;
439 g_c_w[i*4+3] = (C0(phase_offset) * 4096.0);
445 g_c_h[i*4] = (C0(phase_offset) * 4096.0);
454 g_c_h_uv[i*4] = (C0(phase_offset) * 4096.0);
  /external/speex/libspeex/
math_approx.h 131 /*#define C0 3634
137 #define C0 3634
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 45 public long toMicros(long d) { return d/(C1/C0); }
46 public long toMillis(long d) { return d/(C2/C0); }
47 public long toSeconds(long d) { return d/(C3/C0); }
48 public long toMinutes(long d) { return d/(C4/C0); }
49 public long toHours(long d) { return d/(C5/C0); }
50 public long toDays(long d) { return d/(C6/C0); }
55 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
66 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1089 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1278 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1495 int c0, dif; local
1585 int c0, dif; local
    [all...]

Completed in 503 milliseconds