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

1 2

  /external/clang/test/SemaCXX/
value-dependent-exprs.cpp 5 class C0 {
alias-template.cpp 70 class C0 {
72 template<typename U> using C0 = int; // expected-error {{name defined in alias declaration must be an identifier}}
79 template<typename U> using C0 = C1; // ok
125 class C0 {
128 C0::U<int> v; // expected-error {{'U' is a private member}}
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_cosf.c 28 C0 = -0x1ffffffd0c5e81.0p-54, /* -0.499999997251031003120 */
45 return ((one+z*C0) + w*C1) + (w*z)*r;
  /external/clang/test/SemaTemplate/
friend.cpp 12 struct C0 {
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 7 class C0
11 : virtual public C0
16 : public C0
22 : virtual public C0
34 , public C0
39 : public C0
49 , public C0
mangle-ms-template-callback.cpp 8 typedef C<void(void)> C0;
16 C0 callback_void;
19 volatile C0 callback_void_volatile;
36 void foo(C0 c) {}
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 54 ConstantInt *C0 = cast<ConstantInt>(R1->getOperand(0));
56 EXPECT_EQ(C0->getValue(), A);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp 85 class C0 {
87 using C0 = int; // expected-error {{name defined in alias declaration must be an identifier}}
94 using C0 = C1; // ok
143 class C0 {
146 C0::U v; // expected-error {{'U' is a private member}}
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 16 public long toMicros(long d) { return d/(C1/C0); }
17 public long toMillis(long d) { return d/(C2/C0); }
18 public long toSeconds(long d) { return d/(C3/C0); }
19 public long toMinutes(long d) { return d/(C4/C0); }
20 public long toHours(long d) { return d/(C5/C0); }
21 public long toDays(long d) { return d/(C6/C0); }
26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
37 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
    [all...]
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 333 private int C0, C1, C2, C3;
424 C0 = (bytes[index++] & 0xff);
425 C0 |= (bytes[index++] & 0xff) << 8;
426 C0 |= (bytes[index++] & 0xff) << 16;
427 C0 |= bytes[index++] << 24;
451 bytes[index++] = (byte)C0;
452 bytes[index++] = (byte)(C0 >> 8);
453 bytes[index++] = (byte)(C0 >> 16);
454 bytes[index++] = (byte)(C0 >> 24);
477 C0 ^= KW[0][0]
    [all...]
AESFastEngine.java     [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
AES.java     [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
bicubic_scaler.c 47 // C0 = a*t - a*t
145 // C0 = -a*t + a*t
147 float C0(float t) {
190 real0 = C0(phase_offset_real) * 4096.0;
418 g_c_w[i * 4 + 3] = (C0(phase_offset) * 4096.0);
423 g_c_h[i * 4] = (C0(phase_offset) * 4096.0);
431 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...]
  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 563 AccPacket C0, C1, C2, C3, C4, C5, C6, C7;
564 traits.initAcc(C0);
599 traits.madd(A0,B_0,C0,T0);
608 traits.madd(A0,B_0,C0,T0);
617 traits.madd(A0,B_0,C0,T0);
626 traits.madd(A0,B_0,C0,T0);
645 traits.madd(A0,B_0,C0,T0);
661 traits.madd(A0,B_0,C0,T0);
676 traits.madd(A0,B_0,C0,T0);
690 traits.madd(A0,B_0,C0,T0)
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 303 ConstantFP *C0 = dyn_cast<ConstantFP>(I->getOperand(0));
306 if (C0 && C1)
309 return (C0 && C0->getValueAPF().isNormal()) ||
332 ConstantFP *C0 = dyn_cast<ConstantFP>(Opnd0);
337 // (X * C0) * C => X * (C0*C)
339 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C);
343 if (C0) {
344 // (C0 / X) * C => (C0 * C) /
    [all...]
InstCombineAddSub.cpp 322 ConstantFP *C0, *C1;
325 if ((C0 = dyn_cast<ConstantFP>(Opnd0)) && C0->isZero())
332 if (!C0)
335 Addend0.set(C0, 0);
352 Addend0.set(APFloat(C0->getValueAPF().getSemantics()), 0);
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 253 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
264 static const ALIGN16_BEG float ALIGN16_END C0[4] =
275 const __m128 pol5_y = _mm_add_ps(pol5_y_8, *((__m128 *)C0));
323 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
328 static const ALIGN16_BEG float C0[4] ALIGN16_END =
333 const __m128 exp2_y = _mm_add_ps(exp2_y_2, *((__m128 *)C0));
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1496 int c0, dif; local
1586 int c0, dif; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 157 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
162 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/webp/src/dsp/
lossless.c 289 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
292 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
295 const __m128i V1 = _mm_add_epi16(C0, C1);
302 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
304 const uint32_t ave = Average2(c0, c1);
323 const __m128i C0 = _mm_cvtsi32_si128(c);
324 const __m128i AC0 = _mm_subs_epu8(A0, C0);
325 const __m128i CA0 = _mm_subs_epu8(C0, A0);
326 const __m128i BC0 = _mm_subs_epu8(B0, C0);
    [all...]

Completed in 678 milliseconds

1 2