Searched defs:x3 (Results 1 - 25 of 73) sorted by relevance

123

/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.string/
H A Dp1.cpp9 char x3[] = { "hello" }; variable
10 extern char x3[6];
/external/clang/test/SemaCXX/
H A Dattr-visibility.cpp18 struct x3 { struct
H A Ddependent-types.cpp8 T& x3; // expected-error{{declaration of reference variable 'x3' requires an initializer}} local
H A Dswitch.cpp39 void x3(C &c) { function
H A Dcopy-initialization.cpp14 X x3 = ip; local
H A Ddefault-constructor-initializers.cpp13 X3 x3; // expected-note {{first required here}} variable
/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp9 >> *x3; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}} variable
/external/compiler-rt/lib/
H A Dpopcountti2.c24 tu_int x3 = (tu_int)a; local
25 x3 = x3 - ((x3 >> 1) & (((tu_int)0x5555555555555555uLL << 64) |
28 x3 = ((x3 >> 2) & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL))
29 + (x3 & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL));
31 x3 = (x3 + (x3 >>
[all...]
/external/clang/test/Sema/
H A Darray-size.c7 int x3[(unsigned)1073741824 + 1]; // expected-error{{array is too large}} local
H A Dtentative-decls.c6 struct a x3[10]; // expected-error{{array has incomplete element type 'struct a'}} variable in typeref:struct:a
/external/valgrind/main/massif/tests/
H A Dlong-time.c10 int i, *x1, *x2, *x3, *x4; local
15 x3 = malloc(1200 * 1000);
17 free(x3);
/external/clang/test/CXX/temp/temp.names/
H A Dp3-0x.cpp7 Y<X<1>> x3; // OK, same as Y<X<1> > x3; variable
/external/clang/test/Index/
H A Dcxx-operator-overload.cpp9 Cls x1, x2, x3; local
10 Cls x4 = x1 + x2 + x3;
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp19 x3 = ei_random<Scalar>(), local
22 V3 v3(x1, x2, x3);
23 V4 v4(x1, x2, x3, x4);
30 VERIFY_IS_APPROX(x3, v3.z());
31 VERIFY_IS_APPROX(x3, v4.z());
/external/v8/test/mjsunit/
H A Dobj-construct.js43 var x3 = [ ]; variable
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp6.cpp15 const int x3; // expected-error{{default initialization of an object of const type 'const int'}} local
/external/clang/test/CXX/except/except.spec/
H A Dp14-ir.cpp28 void test(X2 x2, X3 x3, X5 x5) { argument
38 X3 x3a(x3);
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.copy/
H A Dp1.cpp13 X x3 = y; // expected-error{{no viable conversion from 'const ExplicitConv::Y' to 'ExplicitConv::X'}} local
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2-cxx0x.cpp16 X<B> x3; local
/external/eigen/test/
H A Dsmallvectors.cpp21 x3 = internal::random<Scalar>(), local
24 V3 v3(x1, x2, x3);
25 V4 v4(x1, x2, x3, x4);
32 VERIFY_IS_APPROX(x3, v3.z());
33 VERIFY_IS_APPROX(x3, v4.z());
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_dct.c87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
95 x3 = (pInVect[1] + pInVect[7]) >>1;
123 /* rearrangement of x1,x3,x5,x7 as in (15) */
126 x3 = ( x3 <<1 ) - x5 ;
127 x1 -= x3 >>1 ;
135 /* rearrangement of x3 and x7 as in (15) */
136 x3 -= x7;
140 /* 2-point IDCT of x3 and x7 and post-multiplication as in (15) */
141 temp = x3 ;
[all...]
/external/clang/test/Lexer/
H A Dms-extensions.c6 __int32 x3 = 5i32; variable
/external/clang/test/SemaTemplate/
H A Dinstantiate-member-pointers.cpp35 X3<int, Y, &Y::x> x3; variable
/external/openssh/
H A Djpake.h51 BIGNUM *x3; /* random in Zq */ member in struct:jpake_ctx
63 BIGNUM *g_x3; /* g^x3 */
67 BIGNUM *a; /* g^((x1+x3+x4)*x2*s) */
70 BIGNUM *b; /* g^((x1+x2+x3)*x4*s) */
/external/openssl/crypto/rc2/
H A Drc2_cbc.c140 register RC2_INT x0,x1,x2,x3,t; local
148 x3=(RC2_INT)(l>>16L);
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
163 x3=(t<<5)|(t>>11);
170 x0+=p1[x3&0x3f];
173 x3
185 register RC2_INT x0,x1,x2,x3,t; local
[all...]

Completed in 624 milliseconds

123