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

1 2 3 4 5 6

  /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* dereferenceable({{[0-9]+}})) 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
  /prebuilts/go/darwin-x86/src/math/
sincos_amd64.s 53 MOVSD $PI4A, X3
54 MULSD X2, X3
55 SUBSD X3, X0
56 MOVSD $PI4B, X3
57 MULSD X2, X3
58 SUBSD X3, X0
59 MOVSD $PI4C, X3
60 MULSD X2, X3
61 SUBSD X3, X0
100 MOVQ DX, X3
    [all...]
log_amd64.s 48 MOVSD $1.0, X3 // x0= 0 or ^0, x1= k, x2 = f1, x3= 1
49 ANDPD X0, X3 // x0= 0 or ^0, x1= k, x2 = f1, x3= 0 or 1
50 SUBSD X3, X1 // x0= 0 or ^0, x1= k, x2 = f1, x3= 0 or 1
51 MOVSD $1.0, X0 // x0= 1, x1= k, x2= f1, x3= 0 or 1
52 ADDSD X0, X3 // x0= 1, x1= k, x2= f1, x3= 1 or 2
53 MULSD X3, X2 // x0= 1, x1= k, x2= f
    [all...]
  /prebuilts/go/linux-x86/src/math/
sincos_amd64.s 53 MOVSD $PI4A, X3
54 MULSD X2, X3
55 SUBSD X3, X0
56 MOVSD $PI4B, X3
57 MULSD X2, X3
58 SUBSD X3, X0
59 MOVSD $PI4C, X3
60 MULSD X2, X3
61 SUBSD X3, X0
100 MOVQ DX, X3
    [all...]
log_amd64.s 48 MOVSD $1.0, X3 // x0= 0 or ^0, x1= k, x2 = f1, x3= 1
49 ANDPD X0, X3 // x0= 0 or ^0, x1= k, x2 = f1, x3= 0 or 1
50 SUBSD X3, X1 // x0= 0 or ^0, x1= k, x2 = f1, x3= 0 or 1
51 MOVSD $1.0, X0 // x0= 1, x1= k, x2= f1, x3= 0 or 1
52 ADDSD X0, X3 // x0= 1, x1= k, x2= f1, x3= 1 or 2
53 MULSD X3, X2 // x0= 1, x1= k, x2= f
    [all...]
  /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 17 template <int& N> struct X3 { X3(); };
18 template <int& N> X3<N>::X3() { }
37 template <int (&fp)(int)> struct X3 { }; // expected-note 4{{here}}
72 X3<f> x3a;
73 X3<&f> x3a_addr; // expected-error {{address taken}}
74 X3<f_tmpl> x3b;
75 X3<&f_tmpl> x3b_addr; // expected-error {{address taken}}
76 X3<f_tmpl<int> > x3c
    [all...]
  /external/clang/test/CXX/class/class.mem/
p13.cpp 49 struct X3 {
51 X3 // expected-error{{member 'X3' has the same name as its class}}
  /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;
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP521R1Point.java 162 SecP521R1FieldElement X3 = new SecP521R1FieldElement(t4);
163 SecP521R1Field.square(R, X3.x);
164 SecP521R1Field.add(X3.x, G, X3.x);
165 SecP521R1Field.subtract(X3.x, V, X3.x);
166 SecP521R1Field.subtract(X3.x, V, X3.x);
169 SecP521R1Field.subtract(V, X3.x, Y3.x);
185 return new SecP521R1Point(curve, X3, Y3, zs, this.withCompression)
    [all...]

Completed in 3175 milliseconds

1 2 3 4 5 6