Searched defs:X0 (Results 101 - 125 of 152) sorted by relevance

1234567

/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmulti-level-substitution.cpp20 struct X0 { struct
26 X0<int>().f<1, 2, 3, 4, 5>();
246 struct X0 { struct in namespace:ExpandingFunctionParameters
253 typename X0<T(T, U...)...>::type f(U...);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp2-0x.cpp53 struct X0 { // expected-note {{here}} struct in namespace:N0
74 void N0::X0<T>::ft1(T t, U u) {
78 template<typename T> T N0::X0<T>::member;
80 template<> struct N0::X0<void> { }; struct in class:N0
81 N0::X0<void> test_X0;
84 template<> struct N0::X0<const void> { }; // expected-error{{class template specialization of 'X0' not in a namespace enclosing 'N0'}} struct in class:N1::N0
88 template<> struct X0<volatile void>;
91 template<> struct N0::X0<volatile void> { struct in class:N0
134 template<> void N0::X0<voi
286 struct X0 { struct in namespace:has_inline_namespaces::inner
311 template<> struct X0<X1> { }; struct in namespace:has_inline_namespaces
330 template<> struct has_inline_namespaces::X0<X3> { }; struct in class:has_inline_namespaces
[all...]
/external/clang/test/CodeGen/
H A Doverride-layout.c17 // CHECK: Type: struct X0
18 struct X0 { struct
22 void use_X0() { struct X0 x0; x0.x[5] = sizeof(struct X0); };
27 struct X0 y;
/external/clang/test/CodeGenCXX/
H A Dvalue-init.cpp141 struct X0 { struct in namespace:zeroinit
142 X0() { } function in struct:zeroinit::X0
146 struct X1 : X0 {
160 struct X2 : X0 {
/external/clang/test/Sema/
H A DMicrosoftExtensions.c61 struct X0 { struct
/external/clang/test/SemaCXX/
H A Dc99-variable-length-array.cpp45 template<typename T> struct X0 { }; struct
51 X0<__typeof__(array)> x0a; // expected-error{{variably modified type 'typeof (array)' (aka 'int [N]') cannot be used as a template argument}}
H A Dlinkage-spec.cpp32 struct X0 { struct in namespace:N0
H A Dnested-name-spec-locations.cpp11 struct X0 { struct in namespace:outer::inner
25 using outer::inner::X0<
35 using outer::inner::X0<
68 outer_alias::inner::X0<typename add_reference<T>::type
81 typedef typename outer::inner::X0<
H A Dreferences.cpp130 template<typename T> struct X0 struct in namespace:PR7149
133 X0(T& p1) : first(p1) { } function in struct:PR7149::X0
140 X0< const int[1]> c(p1);
H A Dstatic-cast.cpp152 struct X0;
157 X1(const X0&);
159 operator X0() const;
162 struct X0 { }; struct
H A Dusing-decl-1.cpp27 struct X0 { struct
32 struct X1 : X0 {
36 using X0::operator();
H A Dvirtual-override.cpp138 class X0 { class
141 class X1 : public X0 {
H A Dconstructor-initializer.cpp176 struct X0 : NDC<int> { struct in inherits:NDC
177 X0(int &ref) : NDC<int>(ref), ndc(ref) { } function in struct:X0
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-1.cpp3 struct X0 { struct
11 template struct X0<int, float>;
12 template struct X0<int*, int>;
13 template struct X0<int X1::*, int>; // expected-note{{instantiation of}}
H A Dinstantiate-function-params.cpp33 template<typename T> struct X0 { }; struct
34 template<typename R, typename A1> struct X0<R(A1 param)> { }; struct
37 void instF0(X0<T(A1)> x0a, X0<T(A2)> x0b) {
38 X0<T(A1)> x0c;
39 X0<T(A2)> x0d;
42 template void instF0<int, int, float>(X0<int(int)>, X0<int(float)>);
H A Dinstantiate-init.cpp3 struct X0 { // expected-note 8{{candidate}} struct
4 X0(int*, float*); // expected-note 4{{candidate}}
8 X0 f0(T t, U u) {
9 X0 x0(t, u); // expected-error{{no matching}}
10 return X0(t, u); // expected-error{{no matching}}
24 void test_f1(X0 *x0, int *ip, float *fp, double *dp) {
H A Dinstantiate-method.cpp92 struct X0 : X0Base { struct in inherits:X0Base
96 struct X1 : X0<U> {
H A Dmember-access-expr.cpp11 struct X0 : Base { struct in inherits:Base
15 void test_f0(X0 x0) {
25 void test_f0_through_typedef(X0 x0) {
42 void test_f0_through_typedef2(X0 x0, X1 x1) {
H A Dmember-template-access-expr.cpp134 struct X0 : Base<1, T> { }; struct in namespace:rdar8198511
138 X0<int> x0;
H A Dtypename-specifier-4.cpp59 struct X0 { struct
63 void f0(X0<T>::Inner<T*, T&>); // expected-note{{here}}
64 void f0(typename X0<T>::Inner<T*, T&>); // expected-error{{redecl}}
66 void f1(X0<T>::Inner<T*, T&>); // expected-note{{here}}
67 void f1(typename X0<T>::template Inner<T*, T&>); // expected-error{{redecl}}
69 void f2(typename X0<T>::Inner<T*, T&>::type); // expected-note{{here}}
70 void f2(typename X0<T>::template Inner<T*, T&>::type); // expected-error{{redecl}}
H A Ddefault-expr-arguments.cpp58 struct X0 { struct
63 void X0<U>::f(U) { }
65 void test_x0(X0<int> xi) {
74 void test_x0_not_default_constructible(X0<NotDefaultConstructible> xn) {
H A Dfriend-template.cpp30 template<typename T> struct X0 { struct in namespace:test2
31 template<typename U> friend struct X0;
34 template<typename T> struct X0<T*> { struct in namespace:test2
35 template<typename U> friend struct X0;
38 template<> struct X0<int> { struct in namespace:test2
39 template<typename U> friend struct X0;
50 X0<int*> x0ip;
147 template<class > struct X0 struct in namespace:PR7013a
171 X2<int, X0<int> > ngs;
179 template<class > struct X0 struct in namespace:PR7013b
[all...]
/external/scrypt/lib/crypto/
H A Dcrypto_scrypt-sse.c87 __m128i X0, X1, X2, X3; local
91 X0 = B[0];
98 T = _mm_add_epi32(X0, X3);
101 T = _mm_add_epi32(X1, X0);
108 X0 = _mm_xor_si128(X0, _mm_slli_epi32(T, 18));
109 X0 = _mm_xor_si128(X0, _mm_srli_epi32(T, 14));
117 T = _mm_add_epi32(X0, X1);
120 T = _mm_add_epi32(X3, X0);
[all...]
/external/skia/src/core/
H A DSkLineClipper.cpp33 double X0 = src[0].fX; local
37 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
39 // The computed X value might still exceed [X0..X1] due to quantum flux
42 return (float)pin_unsorted(result, X0, X1);
54 double X0 = src[0].fX; local
58 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp5.cpp11 template<short s> struct X0 { }; struct in namespace:integral_parameters
12 X0<17> x0i;
13 X0<'a'> x0c;
141 template<int (*)(int)> struct X0 { }; // expected-note 3{{template parameter is declared here}} struct in namespace:pointer_to_function
146 void x0a(X0<f>);
147 void x0b(X0<&f>);
148 void x0c(X0<g>); // expected-error{{non-type template argument of type 'int (float)' cannot be converted to a value of type 'int (*)(int)'}}
149 void x0d(X0<&g>); // expected-error{{non-type template argument of type 'int (*)(float)' cannot be converted to a value of type 'int (*)(int)'}}
150 void x0e(X0<funcptr>); // expected-error{{must have its address taken}}
158 template<int (&)(int)> struct X0 { }; // expecte struct in namespace:reference_to_function
184 template<int (Y::*)(int)> struct X0 {}; // expected-note{{template parameter is declared here}} struct in namespace:pointer_to_member_function
198 template<int Y::*> struct X0 {}; // expected-note{{template parameter is declared here}} struct in namespace:pointer_to_member_data
[all...]

Completed in 378 milliseconds

1234567