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

1 2 3 4

  /external/clang/test/CodeGenCXX/
microsoft-abi-non-virtual-base-ordering.cpp 4 struct C0 { int a; };
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 }
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/clang/test/SemaCXX/
value-dependent-exprs.cpp 5 class C0 {
alias-template.cpp 70 class C0 {
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}}
  /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/libcxx/test/std/containers/sequences/array/array.swap/
swap.pass.cpp 84 typedef std::array<T, 0> C0;
85 C0 l = {};
86 C0 r = {};
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.swap/
swap.pass.cpp 84 typedef std::array<T, 0> C0;
85 C0 l = {};
86 C0 r = {};
  /external/clang/test/SemaTemplate/
friend.cpp 12 struct C0 {
  /external/libcxx/test/std/containers/sequences/array/array.special/
swap.pass.cpp 67 typedef std::array<T, 0> C0;
68 static_assert(can_swap<C0&>::value, "");
69 C0 l = {};
70 C0 r = {};
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
d2.go 12 // C0 should be first.
13 const C0 = 0
  /prebuilts/go/linux-x86/src/go/doc/testdata/
d2.go 12 // C0 should be first.
13 const C0 = 0
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.special/
swap.pass.cpp 67 typedef std::array<T, 0> C0;
68 static_assert(can_swap<C0&>::value, "");
69 C0 l = {};
70 C0 r = {};
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 55 ConstantInt *C0 = mdconst::extract<ConstantInt>(R1->getOperand(0));
57 EXPECT_EQ(C0->getValue(), A);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp 85 class C0 {
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/
ms-x86-empty-nonvirtual-bases.cpp 14 struct C0 { int a; C0() : a(0xf00000C0) {printf("C0 : %p\n", this);} };
69 C0 c0; member in struct:D
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
    [all...]
ms-x86-empty-virtual-base.cpp 14 struct C0 { int a; C0() : a(0xf00000C0) {printf("C0 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} };
107 C0 c0; member in struct:D
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
    [all...]
ms-x86-lazy-empty-nonvirtual-base.cpp 744 struct C0 {};
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/
burg_modified_FLP.c 49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2;
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/swiftshader/src/Renderer/
Vertex.hpp 28 C0 = 1, // Diffuse
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 20 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)); }
    [all...]
  /external/libopus/silk/fixed/
burg_modified_FIX.c 58 opus_int32 C0, num, nrg, rc_Q31, invGain_Q30, Atmp_QA, Atmp1, tmp1, tmp2, x1, x2;
78 C0 = (opus_int32)silk_RSHIFT64(C0_64, rshifts );
80 C0 = silk_LSHIFT32((opus_int32)C0_64, -rshifts );
83 CAb[ 0 ] = CAf[ 0 ] = C0 + silk_SMMUL( SILK_FIX_CONST( FIND_LPC_COND_FAC, 32 ), C0 ) + 1; /* Q(-rshifts) */
112 CAb[ 0 ] = CAf[ 0 ] = C0 + silk_SMMUL( SILK_FIX_CONST( FIND_LPC_COND_FAC, 32 ), C0 ) + 1; /* Q(-rshifts) */
252 /* Subtract energy of preceding samples from C0 */
256 C0 -= (opus_int32)silk_RSHIFT64( silk_inner_prod16_aligned_64( x_ptr, x_ptr, D, arch ), rshifts );
261 C0 -= silk_LSHIFT32( silk_inner_prod_aligned( x_ptr, x_ptr, D, arch), -rshifts)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_class.py 524 class C0:
527 hash(C0()) # This should work; the next two should raise TypeError
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 416 private int C0, C1, C2, C3;
517 C0 = (bytes[index++] & 0xff);
518 C0 |= (bytes[index++] & 0xff) << 8;
519 C0 |= (bytes[index++] & 0xff) << 16;
520 C0 |= bytes[index++] << 24;
544 bytes[index++] = (byte)C0;
545 bytes[index++] = (byte)(C0 >> 8);
546 bytes[index++] = (byte)(C0 >> 16);
547 bytes[index++] = (byte)(C0 >> 24);
568 int t0 = this.C0 ^ KW[0][0]
    [all...]
AESFastEngine.java     [all...]

Completed in 766 milliseconds

1 2 3 4