/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
D | p3.cpp | 24 struct X2 { // expected-note 4{{refers here}} struct 31 template struct X2<int>::Inner<float>; // expected-error{{explicit instantiation of undefined templ… 43 template struct X2<float>::InnerClass; // expected-error{{undefined member}} 47 template X2<int>::X2(); // expected-error{{not an instantiation}} 48 template X2<int>::X2(const X2&); // expected-error{{not an instantiation}} 49 template X2<int>::~X2(); // expected-error{{not an instantiation}} 50 template X2<int> &X2<int>::operator=(const X2<int>&); // expected-error{{not an instantiation}}
|
D | p1.cpp | 61 struct X2 { struct 76 T X2<T, U>::static_member1 = 17; // expected-error{{cannot initialize}} argument 79 U X2<T, U>::static_member2; // expected-error{{no matching}} 81 template void X2<int, float>::f(int &, float); 82 template void X2<int, float>::f(int &, double); // expected-error{{does not refer}} 83 template void X2<int, int*>::f(int&, int*); // expected-note{{instantiation}} 85 template struct X2<int, float>::Inner; 86 template struct X2<int, Incomplete>::Inner; // expected-note{{instantiation}} 88 template int X2<int, float>::static_member1; 89 template int* X2<int*, float>::static_member1; // expected-note{{instantiation}} [all …]
|
D | p3-0x.cpp | 32 struct X2 {}; struct 35 template void f<X2>(X2&); 39 template struct X0<X2>::MemberClass; 41 template void X0<X2>::mem_func(); 43 template struct X0<X2>::MemberClassTemplate<X1>; 45 template void X0<X2>::mem_func_template(X1&); 47 template int X0<X2>::value;
|
/external/clang/test/SemaTemplate/ |
D | dependent-type-identity.cpp | 11 struct X2 { struct 58 void f6(typename N::X2<T>::template apply<U> *); // expected-note{{previous}} 59 void f6(typename N::X2<U>::template apply<U> *); 60 void f6(typename N::X2<U>::template apply<T> *); 61 void f6(typename ::N::X2<type>::template apply<U_type> *); // expected-error{{redeclar}} 63 void f7(typename N::X2<T>::template apply<U> *); // expected-note{{previous}} 64 void f7(typename N::X2<U>::template apply<U> *); 65 void f7(typename N::X2<U>::template apply<T> *); 66 void f7(typename X2<type>::template apply<U_type> *); // expected-error{{redeclar}} 68 void f8(typename N::X2<T>::template apply<U> *); // expected-note{{previous}} [all …]
|
D | default-arguments.cpp | 51 struct X2 { struct 74 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}} argument 75 X2<int>::Inner1<float> x2iif; 77 X2<int>::Inner1<> x2bad; // expected-error{{too few template arguments for class template 'Inner1'}} 79 X2<int>::NonType1<'a'> x2_nontype1; 80 X2<int>::NonType1<> x2_nontype1_bad; // expected-error{{too few template arguments for class templa… 83 X2<int>::Inner3<float>::VeryInner<> vi; 84 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype; // expected-note{{in instantiation of template c… 93 X2<int>::Inner3<float>::VeryInner<int, float> >::value? 1 : -1]; 96 X2<char>::Inner3<int>::NonType2<sizeof(char), sizeof(int), [all …]
|
D | temp_class_order.cpp | 30 struct X2 { }; struct 33 struct X2<T*, U> { }; // expected-note{{matches}} struct 36 struct X2<T, U*> { }; // expected-note{{matches}} struct 39 struct X2<const T*, const U*> { }; struct 41 X2<int*, int*> x2a; // expected-error{{ambiguous}} 42 X2<const int*, const int*> x2b;
|
D | friend-template.cpp | 154 template<typename , typename T> struct X2 struct 162 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B); 164 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B) in op() 166 X2<int, Tr> s; in op() 171 X2<int, X0<int> > ngs; in n() 186 template<typename , typename T> struct X2 struct 194 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B); 196 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B) in op() 198 X2<int, Tr> s; in op() 203 X2<int, X0<int> > ngs; in n()
|
D | constructor-template.cpp | 60 struct X2 { struct 61 X2(); // expected-note{{candidate constructor}} 62 X2(X2&); // expected-note {{candidate constructor}} 63 …template<typename T> X2(T); // expected-note {{candidate template ignored: instantiation would tak… 66 X2 test(bool Cond, X2 x2) { in test() 70 return X2(); // expected-error{{no matching constructor}} in test()
|
D | temp_explicit.cpp | 37 template<typename T> struct X2; // expected-note{{declared here}} 39 template struct X2<float>; // expected-error{{undefined template}} variable 42 struct X2 { struct 46 template struct X2<int>; // okay variable 47 template struct X2<int&>; // expected-note{{in instantiation of}} variable
|
/external/scrypt/lib/crypto/ |
D | crypto_scrypt-sse.c | 87 __m128i X0, X1, X2, X3; in salsa20_8() local 93 X2 = B[2]; in salsa20_8() 102 X2 = _mm_xor_si128(X2, _mm_slli_epi32(T, 9)); in salsa20_8() 103 X2 = _mm_xor_si128(X2, _mm_srli_epi32(T, 23)); in salsa20_8() 104 T = _mm_add_epi32(X2, X1); in salsa20_8() 107 T = _mm_add_epi32(X3, X2); in salsa20_8() 113 X2 = _mm_shuffle_epi32(X2, 0x4E); in salsa20_8() 121 X2 = _mm_xor_si128(X2, _mm_slli_epi32(T, 9)); in salsa20_8() 122 X2 = _mm_xor_si128(X2, _mm_srli_epi32(T, 23)); in salsa20_8() 123 T = _mm_add_epi32(X2, X3); in salsa20_8() [all …]
|
/external/libavc/common/ |
D | ih264_deblk_edge_filters.c | 156 pu1_src_temp[pos_p0] = ((p2 + X2(p1) + X2(p0) + X2(q0) + q1 in ih264_deblk_luma_vert_bs4() 160 ((X2(p3) + X3(p2) + p1 + p0 + q0 in ih264_deblk_luma_vert_bs4() 166 pu1_src_temp[pos_p0] = ((X2(p1) + p0 + q1 + 2) >> 2); in ih264_deblk_luma_vert_bs4() 172 pu1_src_temp[pos_q0] = (p1 + X2(p0) + X2(q0) + X2(q1) + q2 in ih264_deblk_luma_vert_bs4() 175 pu1_src_temp[pos_q2] = (X2(q3) + X3(q2) + q1 + q0 + p0 + 4) in ih264_deblk_luma_vert_bs4() 181 pu1_src_temp[pos_q0] = (X2(q1) + q0 + p1 + 2) >> 2; in ih264_deblk_luma_vert_bs4() 187 pu1_src_temp[pos_p0] = ((X2(p1) + p0 + q1 + 2) >> 2); in ih264_deblk_luma_vert_bs4() 188 pu1_src_temp[pos_q0] = (X2(q1) + q0 + p1 + 2) >> 2; in ih264_deblk_luma_vert_bs4() 241 pos_q2 = X2(src_strd); in ih264_deblk_luma_horz_bs4() 244 pos_p1 = X2(src_strd); in ih264_deblk_luma_horz_bs4() [all …]
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
D | p5-cxx0x-no-extra-copy.cpp | 13 struct X2 { struct 14 X2(); 17 X2(const X2&); 41 void g2(const X2&); 47 g2(X2()); in test()
|
D | p5-cxx03-extra-copy.cpp | 14 struct X2 { struct 15 X2(); 18 X2(const X2&); // expected-note{{declared private here}} 50 void g2(const X2&); 57 …g2(X2()); // expected-warning{{C++98 requires an accessible copy constructor for class 'X2' when b… in test()
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
D | p4.cpp | 13 struct X2 { struct 20 int array0[sizeof(X2<int>)]; 21 int array1[sizeof(X2<float>)]; // expected-note{{instantiation of}} 24 X2<int> xi; in g() 26 X2<float> xf; in g()
|
/external/clang/test/CodeGenCXX/ |
D | static-init-3.cpp | 26 template<typename T> struct X2 {}; struct 27 X2< B > bg = X1< X2< B > >::get(); 28 X2< A > ag = X1< X2< A > >::get();
|
/external/clang/test/SemaCXX/ |
D | default-constructor-initializers.cpp | 7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}} struct 8 X2(int); 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly i… 18 X2 x2; // expected-note {{member is declared here}} 19 X2 & rx2; // expected-note {{declared here}}
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
D | p1.cpp | 41 template <int &p> struct X2 { }; // expected-note 4{{here}} struct 114 X2<i> x2a; in test() 115 X2<&i> x2a_addr; // expected-error {{address taken}} in test() 116 X2<iarr> x2b; // expected-error {{cannot bind to template argument of type 'int [10]'}} in test() 117 X2<&iarr> x2b_addr; // expected-error {{address taken}} in test() 118 X2<ki> x2c; // expected-error {{ignores qualifiers}} in test() 133 X2<ti> x2d_addr; // expected-error {{refers to thread-local object}} in test()
|
/external/llvm/test/Transforms/BBVectorize/X86/ |
D | simple-int.ll | 12 %X2 = fsub double %A2, %B2 14 %Y2 = call double @llvm.fma.f64(double %X2, double %A2, double %C2) 26 %X2 = fsub double %A2, %B2 28 %Y2 = call double @llvm.fmuladd.f64(double %X2, double %A2, double %C2) 40 %X2 = fsub double %A2, %B2 42 %Y2 = call double @llvm.cos.f64(double %X2) 54 %X2 = fsub double %A2, %B2 56 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P) 68 %X2 = fsub double %A2, %B2 71 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P2)
|
/external/clang/test/CXX/expr/expr.post/expr.call/ |
D | p7-0x.cpp | 7 struct X2 { struct 8 X2(); 9 ~X2(); 25 void f(X1 x1, X2 x2, X3 x3, X4 x4) { in f()
|
/external/freetype/src/autofit/ |
D | afwarp.c | 175 FT_Int X1, X2; in af_warper_compute() local 213 X1 = X2 = points[0].fx; in af_warper_compute() 221 if ( X > X2 ) in af_warper_compute() 222 X2 = X; in af_warper_compute() 225 X1 = X2 = segments[0].pos; in af_warper_compute() 233 if ( X > X2 ) in af_warper_compute() 234 X2 = X; in af_warper_compute() 238 if ( X1 >= X2 ) in af_warper_compute() 242 warper->x2 = FT_MulFix( X2, org_scale ) + org_delta; in af_warper_compute() 344 new_scale = org_scale + FT_DivFix( w - warper->w0, X2 - X1 ); in af_warper_compute() [all …]
|
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/ |
D | p1.cpp | 26 template <typename T> class [[deprecated]] X2 {}; class 27 template <> class X2<int> {}; class 28 X2<char> x3; // FIXME: no warning! 29 X2<int> x4;
|
/external/ply/ply/example/BASIC/ |
D | linear.bas | 2 2 REM ::: A1*X1 + A2*X2 = B1 3 3 REM ::: A3*X1 + A4*X2 = B2 10 42 LET X2 = (A1*B2 - A3*B1) / D 11 55 PRINT X1, X2
|
/external/clang/test/CXX/except/except.spec/ |
D | p14-ir.cpp | 15 struct X2 : X1 { struct 16 X2(); 28 void test(X2 x2, X3 x3, X5 x5) { in test() 33 X2 x2a(x2); in test()
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
D | p2-0x.cpp | 302 struct X2; 309 template<> void f<X2>(X2&); 313 template<> struct X0<X2>::MemberClass { }; 315 template<> void X0<X2>::mem_func(); 317 template<> template<typename T> struct X0<X2>::MemberClassTemplate { }; 319 template<> template<typename T> void X0<X2>::mem_func_template(T&) { } in mem_func_template() 321 template<> int X0<X2>::value = 12;
|
/external/swiftshader/third_party/LLVM/test/Transforms/Reassociate/ |
D | basictest.ll | 182 define i32 @test13(i32 %X1, i32 %X2, i32 %X3) { 184 %B = mul i32 %A, %X2 ; -X1*X2 186 %D = add i32 %B, %C ; -X1*X2 + X1*X3 -> X1*(X3-X2) 189 ; CHECK-NEXT: sub i32 %X3, %X2 195 define i32 @test14(i32 %X1, i32 %X2) { 197 %C = mul i32 %X2, -47 ; X2*-47 198 %D = add i32 %B, %C ; X1*47 + X2*-47 -> 47*(X1-X2) 201 ; CHECK-NEXT: sub i32 %X1, %X2 207 define i32 @test15(i32 %X1, i32 %X2, i32 %X3) { 209 %B = icmp slt i32 %X2, %X3
|