HomeSort by relevance Sort by last modified time
    Searched refs:X3 (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/clang/test/CXX/class/class.mem/
p13.cpp 24 struct X3 {
26 X3 // expected-error{{member 'X3' has the same name as its class}}
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I_s.s 87 X3 RN 14
113 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2
116 CMP X3,#0
118 RSBLT X3,X3,#0
119 SMLABBNE X3,QP,X3,QP1
121 RSBLT X3,X3,#
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 31 struct X3 {
37 int array2[sizeof(X3<int>)];
38 int array3[sizeof(X3<float>)];
41 X3<int> xi;
43 X3<float> xf;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 21 struct X3 {
22 X3();
25 X3(X3&); // expected-note{{candidate constructor not viable: expects an l-value for 1st argument}}
51 void g3(const X3&);
58 g3(X3()); // expected-warning{{no viable constructor copying parameter of type 'X3'}}
76 float &fp2 = g<X3>(); // Not ambiguous.
p5-cxx0x-no-extra-copy.cpp 20 struct X3 {
21 X3();
24 X3(X3&);
42 void g3(const X3&);
48 g3(X3());
58 int &g(int_c<sizeof(f(T()))> * = 0); // expected-note{{candidate function [with T = X3]}}
60 template<typename T> float &g(); // expected-note{{candidate function [with T = X3]}}
63 float &fp = g<X3>(); // expected-error{{call to 'g' is ambiguous}}
  /external/clang/test/CXX/except/except.spec/
p14-ir.cpp 18 struct X3 : X0, X1 {
19 X3();
28 void test(X2 x2, X3 x3, X5 x5) {
34 // CHECK: define linkonce_odr void @_ZN2X3C1ERKS_(%struct.X3* %this, %struct.X3* nonnull) unnamed_addr
38 X3 x3a(x3);
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 12 struct X3 {
13 X3(const X3&) = default;
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
28 vararg(x3); // OK
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 15 #define X3(b, ...) {b, ## __VA_ARGS__}
16 3: X3(foo)
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3-0x.cpp 50 struct X3;
53 template void has_inline_namespaces::f(X3&);
56 template struct has_inline_namespaces::X0<X3>;
63 struct has_inline_namespaces::X0<X4>::MemberClassTemplate<X3>;
66 void has_inline_namespaces::X0<X4>::mem_func_template(X3&);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 14 template <int& N> struct X3 { X3(); };
15 template <int& N> X3<N>::X3() { }
34 template <int (&fp)(int)> struct X3 { }; // expected-note 4{{here}}
69 X3<f> x3a;
70 X3<&f> x3a_addr; // expected-error {{address taken}}
71 X3<f_tmpl> x3b;
72 X3<&f_tmpl> x3b_addr; // expected-error {{address taken}}
73 X3<f_tmpl<int> > x3c
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 39 X3 DN D3.S8
49 VLD1 {X2,X3},[pSrc@128],step
53 VST1 {X0,X1,X2,X3},[pDst@128]! ;// Store 32 bytes to 16 byte aligned pDst
58 VLD1 {X2,X3},[pSrc@128],step
62 VST1 {X0,X1,X2,X3},[pDst@128]!
67 VLD1 {X2,X3},[pSrc@128],step
71 VST1 {X0,X1,X2,X3},[pDst@128]!
76 VLD1 {X2,X3},[pSrc@128],step
80 VST1 {X0,X1,X2,X3},[pDst@128]!
omxVCCOMM_Copy8x8_s.s 40 X3 DN D3.S8
48 VLD1 {X3},[pSrc],step
51 VST1 {X2,X3},[pDst]!
56 VLD1 {X3},[pSrc],step
59 VST1 {X2,X3},[pDst]!
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 16 struct X3 {
18 friend void f0(X3);
21 friend void f1(X3) {
45 template<typename T> struct X3;
50 template<typename T = int> struct Inner::X3 { };
  /external/clang/test/CodeGenCXX/
override-layout.cpp 32 // CHECK: Type: struct X3
33 struct PACKED X3 : virtual public X1, public X0 {
71 X3 x3s[sizeof(X3)];
  /external/clang/test/SemaTemplate/
copy-ctor-assign.cpp 47 struct X3 : X2<int> {
50 void test_X2(X3 &to, X3 from) {
instantiate-member-pointers.cpp 29 struct X3 {
30 X3<T, Class, Ptr> &operator=(const T& value) {
35 X3<int, Y, &Y::x> x3; variable
41 X3<int, Y, Member> member;
instantiate-static-var.cpp 78 struct X3 {};
84 void Foo(X3<1>);
93 Y3().Foo(X3<SizeOf<char>::value>());
temp_explicit.cpp 50 template<typename T> struct X3 {
56 void f1(X3<int&>); // okay, Inner, not instantiated
58 template struct X3<int&>; // expected-note{{instantiation}}
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}}
13 X3 x3; // expected-note {{first required here}} variable
  /external/clang/test/ASTMerge/Inputs/
class-template1.cpp 11 struct X3;
class-template2.cpp 11 struct X3;
  /external/scrypt/lib/crypto/
crypto_scrypt-sse.c 87 __m128i X0, X1, X2, X3;
94 X3 = B[3];
98 T = _mm_add_epi32(X0, X3);
105 X3 = _mm_xor_si128(X3, _mm_slli_epi32(T, 13));
106 X3 = _mm_xor_si128(X3, _mm_srli_epi32(T, 19));
107 T = _mm_add_epi32(X3, X2);
114 X3 = _mm_shuffle_epi32(X3, 0x39)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 41 struct X3 {
48 int check_X3[X<X3, void, void>::value == 3? 1 : -1];
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 53 struct X3 {
54 X3();
66 new (0, 0) X3; // expected-note{{instantiation}}
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 49 // We used to parse 'X3::X3' as a member function declaration.
52 struct X3 {
53 X3::X3(T1()); // expected-error {{extra qualification on member 'X3'}}

Completed in 289 milliseconds

1 2 3 4