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

12

/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp4 struct C0 { int a; }; struct
7 struct C3 : C0, C1, C2 {} a;
9 // Check to see that both C1 and C2 get laid out before C0 does.
10 // CHECK: %struct.C3 = type { %struct.C1, %struct.C2, %struct.C0 }
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
H A Dmangle-ms-template-callback.cpp8 typedef C<void(void)> C0; typedef
16 C0 callback_void;
19 volatile C0 callback_void_volatile;
36 void foo(C0 c) {}
/external/clang/test/SemaCXX/
H A Dvalue-dependent-exprs.cpp5 class C0 { class
H A Dalias-template.cpp70 class C0 { class in namespace:ClassNameRedecl
71 template<typename U> using C0 = int; // expected-error {{member 'C0' has the same name as its class}}
77 template<typename U> using C0 = C1; // ok
123 class C0 {
126 C0::U<int> v; // expected-error {{'U' is a private member}}
H A Dcxx1y-variable-templates_in_class.cpp113 struct C0 { struct in namespace:non_const_init::pointers
120 const int c0_test = C0::Data<int*>;
122 template const int C0::Data<int*>; // expected-error {{undefined}}
124 template<typename U> const U C0::Data2<U*>;
125 template const int C0::Data2<int*>;
/external/clang/test/SemaTemplate/
H A Dfriend.cpp12 struct C0 { struct
/external/llvm/unittests/IR/
H A DMDBuilderTest.cpp55 ConstantInt *C0 = mdconst::extract<ConstantInt>(R1->getOperand(0)); local
57 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
86 using C0 = int; // expected-error {{member 'C0' has the same name as its class}}
92 using C0 = C1; // ok
141 class C0 {
144 C0::U v; // expected-error {{'U' is a private member}}
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp14 struct C0 { int a; C0() : a(0xf00000C0) {printf("C0 : %p\n", this);} }; function in struct:C0
69 C0 c0;
83 // CHECK: 8 | struct C0 c0
94 struct E : B0, C0, C1, C2, B1 {
102 // CHECK-NEXT: 0 | struct C0 (base)
113 struct F : C0, B0, B1, C1 {
120 // CHECK-NEXT: 0 | struct C0 (base)
H A Dms-x86-empty-virtual-base.cpp14 struct C0 { int a; C0() : a(0xf00000C0) {printf("C0 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function in struct:C0
107 C0 c0;
121 // CHECK: 8 | struct C0 c0
137 // CHECK-X64: 8 | struct C0 c0
148 struct E : virtual B0, virtual C0, virtual C1, virtual C2, virtual B1 {
158 // CHECK-NEXT: 8 | struct C0 (virtual base)
172 // CHECK-X64-NEXT: 16 | struct C0 (virtual base)
182 struct F : virtual C0, virtua
[all...]
H A Dms-x86-lazy-empty-nonvirtual-base.cpp744 struct C0 {}; struct
745 struct C1 : public C0 { int C1F0; };
746 struct C2 : public C1, public C0 {};
753 // CHECK-NEXT: 0 | struct C0 (base) (empty)
755 // CHECK-NEXT: 5 | struct C0 (base) (empty)
763 // CHECK-X64-NEXT: 0 | struct C0 (base) (empty)
765 // CHECK-X64-NEXT: 5 | struct C0 (base) (empty)
/external/libopus/silk/float/
H A Dburg_modified_FLP.c49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2; local
58 C0 = silk_energy_FLP( x, nb_subfr * subfr_length );
69 CAb[ 0 ] = CAf[ 0 ] = C0 + FIND_LPC_COND_FAC * C0 + 1e-9f;
165 /* Subtract energy of preceding samples from C0 */
167 C0 -= silk_energy_FLP( x + s * subfr_length, D );
170 nrg_f = C0 * invGain;
181 nrg_f -= FIND_LPC_COND_FAC * C0 * tmp1;
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java20 public long toMicros(long d) { return d/(C1/C0); }
21 public long toMillis(long d) { return d/(C2/C0); }
22 public long toSeconds(long d) { return d/(C3/C0); }
23 public long toMinutes(long d) { return d/(C4/C0); }
24 public long toHours(long d) { return d/(C5/C0); }
25 public long toDays(long d) { return d/(C6/C0); }
30 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
41 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
97 static final long C0 = 1L; field in class:TimeUnit
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java415 private int C0, C1, C2, C3; field in class:AESEngine
506 C0 = (bytes[index++] & 0xff);
507 C0 |= (bytes[index++] & 0xff) << 8;
508 C0 |= (bytes[index++] & 0xff) << 16;
509 C0 |= bytes[index++] << 24;
533 bytes[index++] = (byte)C0;
534 bytes[index++] = (byte)(C0 >> 8);
535 bytes[index++] = (byte)(C0 >> 16);
536 bytes[index++] = (byte)(C0 >> 24);
557 int t0 = this.C0
[all...]
H A DAESFastEngine.java743 private int C0, C1, C2, C3; field in class:AESFastEngine
830 this.C0 = Pack.littleEndianToInt(bytes, off);
838 Pack.intToLittleEndian(this.C0, bytes, off);
846 int t0 = this.C0 ^ KW[0][0];
915 this.C0 = i0 ^ i1 << 8 ^ i2 << 16 ^ i3 << 24 ^ KW[r][0];
932 int t0 = this.C0 ^ KW[ROUNDS][0];
994 this.C0 = i0 ^ i1 << 8 ^ i2 << 16 ^ i3 << 24 ^ KW[0][0];
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_gemm_kernel.h91 Scalar* C0 = C+ib+(j+0)*ldc; local
109 c0 = pload<Packet>(C0+i+(I)*PacketSize); \
123 pstore(C0+i+(I)*PacketSize, c0); \
154 C0[i] += A0[i]*Bc0[0]+A1[i]*Bc0[1]+A2[i]*Bc0[2]+A3[i]*Bc0[3];
159 C0[i] += A0[i]*Bc0[0]+A1[i]*Bc0[1];
190 Scalar* C0 = C+ib+(n_end)*ldc; local
206 c0 = pload<Packet>(C0+i+(I)*PacketSize); \
215 pstore(C0+i+(I)*PacketSize, c0);
239 C0[i] += A0[i]*Bc0[0]+A1[i]*Bc0[1]+A2[i]*Bc0[2]+A3[i]*Bc0[3];
241 C0[
[all...]
/external/freetype/src/gzip/
H A Dinftrees.c139 #define C0 *p++ = 0; macro
140 #define C2 C0 C0 C0 C0
/external/libopus/silk/fixed/
H A Dburg_modified_FIX.c58 opus_int32 C0, num, nrg, rc_Q31, invGain_Q30, Atmp_QA, Atmp1, tmp1, tmp2, x1, x2; local
70 silk_sum_sqr_shift( &C0, &rshifts, x, nb_subfr * subfr_length );
72 C0 = silk_LSHIFT32( C0, rshifts - MAX_RSHIFTS );
73 silk_assert( C0 > 0 );
76 lz = silk_CLZ32( C0 ) - 1;
80 C0 = silk_RSHIFT32( C0, rshifts_extra );
83 C0 = silk_LSHIFT32( 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/webp/src/dsp/
H A Drescaler_neon.c49 const uint64x2_t C0 = vmull_n_u32(vget_low_u32(A0), A); local
51 const uint64x2_t D0 = vmlal_n_u32(C0, vget_low_u32(B0), B);
78 const uint16x4_t C0 = vmovn_u32(B0); local
80 const uint8x8_t D = vmovn_u16(vcombine_u16(C0, C1));
93 const uint32x4_t C0 = local
97 const uint32x4_t D0 = MULT_FIX(C0, fy_scale_half);
138 const uint32x4_t C0 = MULT_FIX(B0, fxy_scale_half); local
140 const uint16x4_t D0 = vmovn_u32(C0);
H A Dfilters_sse2.c46 const __m128i C0 = _mm_add_epi8(A0, B0); local
48 _mm_storeu_si128((__m128i*)&dst[i + 0], C0);
58 const __m128i C0 = _mm_sub_epi8(A0, B0); local
60 _mm_storeu_si128((__m128i*)&dst[i + 0], C0);
95 const __m128i C0 = _mm_sub_epi8(A0, B0); local
97 _mm_storeu_si128((__m128i*)(dst + i + 0), C0);
206 const __m128i C0 = _mm_loadl_epi64((const __m128i*)&top[i - 1]); local
210 const __m128i C1 = _mm_unpacklo_epi8(C0, zero);
H A Drescaler_sse2.c206 const __m128i C0 = _mm_add_epi64(B0, rounder); local
210 const __m128i D0 = _mm_srli_epi64(C0, WEBP_RESCALER_RFIX);
262 const __m128i C0 = _mm_add_epi64(A0, B0); local
266 const __m128i D0 = _mm_add_epi64(C0, rounder);
308 const __m128i C0 = _mm_add_epi64(B0, rounder); local
312 const __m128i D0 = _mm_srli_epi64(C0, WEBP_RESCALER_RFIX); // = frac
H A Dlossless_enc_sse2.c101 const __m128i C0 = _mm_mulhi_epi16(A0, mults_r); // x db | 0 0 local
107 const __m128i F0 = _mm_srli_epi32(C0, 16); // 0 0 | x db
149 const __m128i C0 = _mm_mulhi_epi16(A0, mults_g); // 0 0 | x dr local
151 const __m128i E0 = _mm_sub_epi8(B0, C0); // x x | x r'
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_fp.c779 CONST C0 = { -.5, -.0625, -.5, 1.164 }
782 UYV.xyz = ADD UYV, C0
783 UYV.y = MUL UYV.y, C0.w
792 struct prog_src_register C0 = search_or_add_const4f( c, -.5, -.0625, -.5, 1.164 ); local
808 /* tmp.xyz = ADD TMP, C0
815 C0,
818 /* YUV.y = MUL YUV.y, C0.w
826 src_swizzle1(C0, W),

Completed in 2368 milliseconds

12