Searched defs:C0 (Results 1 - 17 of 17) sorted by relevance

/external/clang/test/SemaCXX/
H A Dvalue-dependent-exprs.cpp4 class C0 { class
H A Dalias-template.cpp70 class C0 { class in namespace:ClassNameRedecl
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
127 class C0 {
130 C0::U<int> v; // expected-error {{'U' is a private member}}
/external/clang/test/SemaTemplate/
H A Dfriend.cpp12 struct C0 { struct
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp7 class C0 class in namespace:Test1
11 : virtual public C0
16 : public C0
22 : virtual public C0
34 , public C0
39 : public C0
49 , public C0
/external/llvm/unittests/Support/
H A DMDBuilderTest.cpp53 ConstantInt *C0 = cast<ConstantInt>(R1->getOperand(0)); local
55 EXPECT_EQ(C0->getValue(), A);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp85 class C0 { class in namespace:ClassNameRedecl
87 using C0 = int; // expected-error {{name defined in alias declaration must be an identifier}}
94 using C0 = C1; // ok
145 class C0 {
148 C0::U v; // expected-error {{'U' is a private member}}
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java16 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)); }
93 static final long C0 = 1L; field in class:TimeUnit
[all...]
/external/bluetooth/bluez/sbc/
H A Dsbc_tables.h379 #define C0 1.0932568993 macro
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),
417 #undef C0 macro
424 #define C0 macro
462 #undef C0 macro
469 #define C0 macro
555 #undef C0 macro
566 #define C0 macro
652 #undef C0 macro
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
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
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
757 C0 = (bytes[index++] & 0xff);
758 C0 |= (bytes[index++] & 0xff) << 8;
759 C0 |= (bytes[index++] & 0xff) << 16;
760 C0 |= bytes[index++] << 24;
784 bytes[index++] = (byte)C0;
785 bytes[index++] = (byte)(C0 >> 8);
786 bytes[index++] = (byte)(C0 >> 16);
787 bytes[index++] = (byte)(C0 >> 24);
809 C0
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DAES.java480 private int C0, C1, C2, C3; field in class:AES
560 C0 = (bytes[index++] & 0xff);
561 C0 |= (bytes[index++] & 0xff) << 8;
562 C0 |= (bytes[index++] & 0xff) << 16;
563 C0 |= bytes[index++] << 24;
585 bytes[index++] = (byte) C0;
586 bytes[index++] = (byte) (C0 >> 8);
587 bytes[index++] = (byte) (C0 >> 16);
588 bytes[index++] = (byte) (C0 >> 24);
610 C0
[all...]
/external/speex/libspeex/
H A Dmath_approx.h131 /*#define C0 3634
137 #define C0 3634 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c47 // C0 = a*t - a*t
149 // C0 = -a*t + a*t
151 float C0(float t) function
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/llvm/lib/Analysis/
H A DConstantFolding.cpp976 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0), local
980 return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD, TLI);
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core_sse2.c253 // 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] = local
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));
/external/qemu/target-mips/
H A Dcpu.h30 uint_fast16_t C0:3; member in struct:r4k_tlb_t
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp7616 Constant *C0 = ConstantDataVector::get(*Context, CV0); local
7617 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);

Completed in 320 milliseconds