/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | microsoft-abi-vbtables.cpp | 9 struct C : virtual A { int c; }; member 10 struct D : virtual B, virtual C { int d; }; argument 33 struct C : virtual A { int c; }; member 34 struct D : B, C { int d; }; struct 54 struct C : virtual A, virtual B { int c; }; member 55 C c; variable 64 struct C : B, virtual A { int c; }; member 65 C c; // Force vbtable emission. variable 76 struct C : B { int c; }; member 77 struct D : B, C { int d; }; struct [all …]
|
H A D | microsoft-abi-structors.cpp | 77 C c; in check_vftable_offset() local 126 struct D { struct 129 D() { in D() argument 134 ~D() { in ~D() 141 void use_D() { D c; } in use_D() local 173 C c; in foo() local 191 struct C : A, B { virtual ~C(); int c; }; member 194 struct D : virtual C { int d; }; argument 266 C c; in create_C() local 272 struct D : C { struct [all …]
|
H A D | const-init-cxx11.cpp | 31 B c; variable 39 int c; member 45 struct D { struct 46 constexpr D() : d(5) {} in D() argument 47 int d; 67 struct C { char c = 1; }; member 70 struct D { double d = 4.0; }; argument 115 struct D { int n[2]; int m[3]; } extern constexpr d = { 1, 2, 3, 4, 5 }; argument 118 char c[4]; member 140 int c, d; member [all …]
|
H A D | microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp | 158 C c; variable 161 class D : B { class 173 D::D() {} in D() function in simple::D 299 C c; variable 302 struct D : virtual V2 { struct 309 // CHECK-LABEL: VFTable for 'V2' in 'extended::D' in 'extended::E' (2 entries). 437 int c; member 440 struct D : C { struct 447 int d; 450 D::D() {} in D() function in pr19408::D [all …]
|
H A D | default-arg-temps.cpp | 39 X c = a; in g() local 60 struct D { struct 61 C c; member 64 … // CHECK-LABEL: define linkonce_odr void @_ZN5test11DC2Ev(%"struct.test1::D"* %this) unnamed_addr 69 D() : c(), a() {} in D() function
|
H A D | microsoft-abi-vtables-return-thunks.cpp | 10 struct C : A, B { int c; }; member 11 struct D : C { int d; }; struct 23 // VFTABLES-NEXT: 0 | test1::D *test1::J::foo() 76 struct C : B { int c; }; member 77 struct D : A, C { int d; }; struct 89 // VFTABLES-NEXT: 0 | test2::D *test2::J::foo() 163 struct D : B, C { D(); }; struct 164 D::D() {} in D() function in pr21073_2::D 182 struct D : virtual B, virtual A, C { struct 186 D::D() {} in D() function in test3::D
|
H A D | thunks.cpp | 110 void C::c() {} in c() function in Test4B::C 115 C c; in f() local 208 class D : public B, class 246 struct D : C { D() {} }; in D() function 259 C c; in test() local 317 struct D : virtual Proxy1 { struct 360 void C::c() {} in c() function in Test15::C 378 struct D : public C { struct
|
/aosp_15_r20/external/clang/test/CXX/class.access/class.protected/ |
H A D | p1.cpp | 14 class D : private B { // expected-note 3 {{constrained}} class 25 void test(C &c) { in test() 47 class D : private B { class 59 void C::test(C &c) { in test() 81 class D : private B { class 116 class D : private B { class 151 class D : private B { class 155 void A::test(C &c) { in test() 160 void B::test(C &c) { in test() 165 void C::test(C &c) { in test() [all …]
|
/aosp_15_r20/external/clang/test/CXX/drs/ |
H A D | dr14xx.cpp | 31 constexpr C c = C(); variable 33 constexpr void f() { C c; } in f() local 41 struct D { union {}; }; argument 58 constexpr C c = C(); variable 67 struct D { union {}; constexpr D() = default; }; argument 124 int a = 1, b, c = 3; member 130 int a, b = 2, c; member 147 union { int a, b = 2, c; }; member 185 struct D { struct 186 int a; [all …]
|
H A D | dr0xx.cpp | 74 struct D : C {}; struct 76 const C c = e; variable 82 …class C : public B {} c; // expected-error 2 {{inherited virtual base class 'dr7::A' has private d… variable 157 int &c = f(1); in g() local 186 } c; variable 237 struct C : B {} c; variable 238 struct D : B { struct 239 int get1() { return c.n; } // expected-error {{protected member}} in get1() 240 int get2() { return ((A&)c).n; } // ok, A is an accessible base of B from here in get2() 428 …struct C : A, B, virtual V {} c; // expected-warning {{direct base 'dr39::example2::A' is inaccess… variable [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project-lite/tests/ |
D | drop_order.rs | 9 struct D<'a>(&'a Cell<usize>, usize); struct 11 impl Drop for D<'_> { implementation 63 let c = Cell::new(0); in struct_pinned() localVariable 67 let c = Cell::new(0); in struct_pinned() localVariable 77 let c = Cell::new(0); in struct_unpinned() localVariable 81 let c = Cell::new(0); in struct_unpinned() localVariable 91 let c = Cell::new(0); in enum_struct() localVariable 95 let c = Cell::new(0); in enum_struct() localVariable 102 let c = Cell::new(0); in enum_struct() localVariable 106 let c = Cell::new(0); in enum_struct() localVariable [all …]
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | uninitialized.cpp | 25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own ini… variable 58 …int c = (c + c); // expected-warning {{variable 'c' is uninitialized when used within its own init… in test_stuff() local 92 …int c = (c + c); // expected-warning {{variable 'c' is uninitialized when used within its own init… in test_stuff() local 129 …int c = (a, a, b, c); // expected-warning {{variable 'c' is uninitialized when used within its ow… in test_comma() local 631 struct D { struct 632 C c; member 633 D(char (*)[1]) : c(c.b.a.A1) {} in D() function 634 D(char (*)[2]) : c(c.b.a.A2()) {} in D() argument 635 …D(char (*)[3]) : c(c.b.a.A3) {} // expected-warning {{field 'c' is uninitialized when used here… in D() function 636 …D(char (*)[4]) : c(c.b.a.A4()) {} // expected-warning {{field 'c' is uninitialized when used here… in D() argument [all …]
|
H A D | abstract.cpp | 21 class D : C { class 34 C c; // expected-error {{variable type 'C' is an abstract class}} variable 39 C c; // expected-error {{field type 'C' is an abstract class}} member 63 class D { class in F 146 C c; variable 175 struct D : C {}; struct 193 C c; in test() local 229 struct D { struct 231 static D x; // expected-error {{abstract class}} 251 template <class T> struct D { struct [all …]
|
H A D | class-layout.cpp | 15 char c; member 29 struct D : C { struct 30 char c; member 33 SA(3, sizeof(D) == 8); argument 72 struct D : C { bool iv0 : 1; }; struct 82 class C : virtual A { int c; }; member in Test1::C 83 struct D : virtual B { }; struct 98 struct D : virtual A { }; struct 319 pod_in_11_only c; member 323 struct D { struct [all …]
|
H A D | cxx0x-initializer-constructor.cpp | 3 struct one { char c[1]; }; member 4 struct two { char c[2]; }; member 57 struct D { struct 58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}} in D() argument 59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}} in D() function 111 C c; in function_call() local 222 struct C { C(int); } c{0}; variable 281 static void bar(C* c) in bar() 403 C c[3] = { variable
|
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ |
H A D | eval.pass.cpp | 38 f(double x, double a, double m, double b, double c) in f() 46 typedef std::piecewise_linear_distribution<> D; in test1() typedef 66 double c = std::numeric_limits<double>::quiet_NaN(); in test1() local 98 typedef std::piecewise_linear_distribution<> D; in test2() typedef 118 double c = std::numeric_limits<double>::quiet_NaN(); in test2() local 150 typedef std::piecewise_linear_distribution<> D; in test3() typedef 170 double c = std::numeric_limits<double>::quiet_NaN(); in test3() local 202 typedef std::piecewise_linear_distribution<> D; in test4() typedef 222 double c = std::numeric_limits<double>::quiet_NaN(); in test4() local 255 typedef std::piecewise_linear_distribution<> D; in test5() typedef [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.samp/rand.dist.samp.plinear/ |
H A D | eval.pass.cpp | 37 f(double x, double a, double m, double b, double c) in f() 45 typedef std::piecewise_linear_distribution<> D; in test1() typedef 65 double c = std::numeric_limits<double>::quiet_NaN(); in test1() local 97 typedef std::piecewise_linear_distribution<> D; in test2() typedef 117 double c = std::numeric_limits<double>::quiet_NaN(); in test2() local 149 typedef std::piecewise_linear_distribution<> D; in test3() typedef 169 double c = std::numeric_limits<double>::quiet_NaN(); in test3() local 201 typedef std::piecewise_linear_distribution<> D; in test4() typedef 221 double c = std::numeric_limits<double>::quiet_NaN(); in test4() local 254 typedef std::piecewise_linear_distribution<> D; in test5() typedef [all …]
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.res/temp.local/ |
H A D | p8.cpp | 16 enum { D }; enumerator 18 enum { C , D }; enumerator 22 template<typename D> void g(C, D) { in g() argument 23 C c; in g() local 40 void N::M::X<C>::f(C, D) { in f() argument 41 C c; in f() local 47 C c; in f() local 51 void N::Y::f(D) { in f() argument
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/ |
H A D | group_norm_kernel.cu | 89 const int64_t c = index % C; in ComputeFusedParamsCUDAKernel() local 112 const int64_t D = C / G; in Compute1dBackwardFusedParamsCUDAKernel() local 120 const int64_t c = g * D + i; in Compute1dBackwardFusedParamsCUDAKernel() local 158 const int64_t c = blockIdx.x * blockDim.x + threadIdx.x; in GammaBeta1dBackwardCUDAKernel1() local 161 const int64_t D = C / G; in GammaBeta1dBackwardCUDAKernel1() local 198 const int64_t c = blockIdx.x * blockDim.x + threadIdx.x; in GammaBeta1dBackwardCUDAKernel2() local 205 const int64_t D = C / G; in GammaBeta1dBackwardCUDAKernel2() local 248 const int64_t c = blockIdx.x * blockDim.x + threadIdx.y; in GammaBeta1dBackwardCUDAKernel2() local 265 const int64_t c = blockIdx.x * blockDim.x + threadIdx.y + blockDim.y; in GammaBeta1dBackwardCUDAKernel2() local 322 const int64_t D = C / G; in ComputeBackwardFusedParamsCUDAKernel() local [all …]
|
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
H A D | Mod.java | 21 int c = Nat.add(len, x, y, z); in add() local 74 int[] D = new int[len30]; in modOddInverse() local 123 int[] D = new int[len30]; in modOddInverseVar() local 235 int c = Nat.sub(len, x, y, z); in subtract() local 242 private static int add30(int len30, int[] D, int[] M) in add30() 248 int c = 0, last = len30 - 1; in add30() local 259 private static void cnegate30(int len30, int cond, int[] D) in cnegate30() 264 int c = 0, last = len30 - 1; in cnegate30() local 274 private static void cnormalize30(int len30, int condNegate, int[] D, int[] M) in cnormalize30() 283 int c = 0, condAdd = D[last] >> 31; in cnormalize30() local [all …]
|
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/raw/ |
H A D | Mod.java | 25 int c = Nat.add(len, x, y, z); in add() local 78 int[] D = new int[len30]; in modOddInverse() local 127 int[] D = new int[len30]; in modOddInverseVar() local 239 int c = Nat.sub(len, x, y, z); in subtract() local 246 private static int add30(int len30, int[] D, int[] M) in add30() 252 int c = 0, last = len30 - 1; in add30() local 263 private static void cnegate30(int len30, int cond, int[] D) in cnegate30() 268 int c = 0, last = len30 - 1; in cnegate30() local 278 private static void cnormalize30(int len30, int condNegate, int[] D, int[] M) in cnormalize30() 287 int c = 0, condAdd = D[last] >> 31; in cnormalize30() local [all …]
|
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/ |
H A D | Mod.java | 25 int c = Nat.add(len, x, y, z); in add() local 78 int[] D = new int[len30]; in modOddInverse() local 127 int[] D = new int[len30]; in modOddInverseVar() local 239 int c = Nat.sub(len, x, y, z); in subtract() local 246 private static int add30(int len30, int[] D, int[] M) in add30() 252 int c = 0, last = len30 - 1; in add30() local 263 private static void cnegate30(int len30, int cond, int[] D) in cnegate30() 268 int c = 0, last = len30 - 1; in cnegate30() local 278 private static void cnormalize30(int len30, int condNegate, int[] D, int[] M) in cnormalize30() 287 int c = 0, condAdd = D[last] >> 31; in cnormalize30() local [all …]
|
/aosp_15_r20/external/clang/test/Layout/ |
H A D | ms-x86-vtordisp.cpp | 113 struct __declspec(align(32)) D : virtual B0, virtual B1 { struct 115 D() : a(0xf000000D) {} in D() argument 116 virtual void f() { printf("D"); } in f() argument 117 virtual void g() { printf("D"); } in g() argument 221 struct C : virtual B { int c; }; member 246 struct C : virtual B { int c; }; member 275 struct C : virtual B { int c; }; member 317 struct C : virtual B<int> { int c; }; member
|
/aosp_15_r20/external/libvpx/vpx_dsp/ |
H A D | intrapred.c | 18 #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) argument 23 int r, c; in d207_predictor() local 47 int r, c; in d63_predictor() local 83 int r, c; in d117_predictor() local 136 int r, c; in d153_predictor() local 181 int r, c; in tm_predictor() local 304 const int D = above[3]; in vpx_d63_predictor_4x4_c() local 327 const int D = above[3]; in vpx_d63e_predictor_4x4_c() local 351 const int D = above[3]; in vpx_d45_predictor_4x4_c() local 372 const int D = above[3]; in vpx_d45e_predictor_4x4_c() local [all …]
|
/aosp_15_r20/external/compiler-rt/test/esan/TestCases/ |
H A D | struct-simple.cpp | 43 struct D { struct 59 struct D d; in part1() argument 97 char c[10]; member in C 107 struct D { struct 122 // CHECK-NEXT: Register struct.D#3#14#11#11: 3 fields in main() argument 133 struct C c[2]; in main() local
|