Home
last modified time | relevance | path

Searched +defs:D +defs:c (Results 1 – 25 of 847) sorted by relevance

12345678910>>...34

/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vbtables.cpp9 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 Dmicrosoft-abi-structors.cpp77 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 Dconst-init-cxx11.cpp31 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 Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp158 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 Ddefault-arg-temps.cpp39 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 Dmicrosoft-abi-vtables-return-thunks.cpp10 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 Dthunks.cpp110 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 Dp1.cpp14 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 Ddr14xx.cpp31 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 Ddr0xx.cpp74 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/
Ddrop_order.rs9 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 Duninitialized.cpp25 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
635D(char (*)[3]) : c(c.b.a.A3) {} // expected-warning {{field 'c' is uninitialized when used here… in D() function
636D(char (*)[4]) : c(c.b.a.A4()) {} // expected-warning {{field 'c' is uninitialized when used here… in D() argument
[all …]
H A Dabstract.cpp21 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 Dclass-layout.cpp15 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 Dcxx0x-initializer-constructor.cpp3 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 Deval.pass.cpp38 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 Deval.pass.cpp37 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 Dp8.cpp16 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 Dgroup_norm_kernel.cu89 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 DMod.java21 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 DMod.java25 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 DMod.java25 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 Dms-x86-vtordisp.cpp113 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 Dintrapred.c18 #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 Dstruct-simple.cpp43 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

12345678910>>...34