Searched defs:xx (Results 1 - 25 of 90) sorted by relevance

1234

/external/clang/test/Parser/
H A Dbuiltin_types_compatible.c35 struct xx { int a; } x, y; struct
38 c = __builtin_choose_expr(0, b, x); // expected-error{{assigning to 'int' from incompatible type 'struct xx'}}
H A Dtypeof.c17 int xx; local
/external/valgrind/main/VEX/test/
H A Dfsave.c45 printf("xx ");
57 int xx = argc > 1; local
65 show_fpustate( buf, xx );
H A Dfrstor.c56 printf("xx ");
68 int xx = argc > 1; local
74 show_fpustate( (unsigned char*)buf1, xx );
79 show_fpustate( (unsigned char*)buf2, xx );
H A Dfxsave.c87 void show ( unsigned char* buf, int xx )
93 if (xx && isFPLsbs(i))
94 printf("xx ");
108 int xx = argc > 1; local
118 show(buf1, xx);
125 show(buf2, xx);
131 show(buf3, xx);
/external/valgrind/main/helgrind/tests/
H A Dtc04_free_lock.c17 XX* xx = malloc(sizeof(XX)); local
18 assert(xx);
20 pthread_mutex_init( &xx->lock, NULL );
22 pthread_mutex_lock( &xx->lock );
24 free(xx);
/external/clang/test/Sema/
H A Dbitfield.c16 float xx : 4; // expected-error {{bit-field 'xx' has non-integral type}} member in struct:a
H A Darray-constraint.c32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} function
H A Dcomplex-int.c6 __complex__ unsigned xx; local
16 result = xx*yy;
20 case xx: ; // expected-error{{expression is not an integer constant expression}}
/external/clang/test/SemaCXX/
H A Dtrailing-return-0x.cpp68 X<int> xx; variable
69 only<int> p2 = xx.f(0L);
70 only<double> p3 = xx.g(0L, 1.0);
71 only<double> p4 = xx.get_nested<double>().h(0L, 1.0, 3.14f);
H A Dwarn-shadow.cpp13 namespace xx { namespace
21 using namespace xx;
/external/srec/srec/cfront/
H A Dsh_down.h35 static PINLINE int fixed_point_convert(float xx, int shift);
75 static PINLINE int fixed_point_convert(float xx, int shift) argument
80 scaled_val = xx * (0x01 << shift);
/external/valgrind/main/none/tests/amd64/
H A Dbug132918.c14 double xx = x; local
28 : /*in*/ "m" (f64), "m" (xx), "m" (yy)
51 do_fprem(&r, 12.3*sin(theta), cos(theta)); show("xx", &r);
H A Dpcmpxstrx64.c30 UChar xx = 0; local
32 if (x >= '0' && x <= '9') { xx = x - '0'; }
33 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; }
34 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; }
37 assert(xx < 16);
38 xx = (xx << 4) | xx;
39 assert(xx < 256);
40 (*dst)[i] = xx;
364 UChar xx = 0; local
[all...]
/external/clang/test/FixIt/
H A Dfixit-function-call.cpp61 int xx; member in struct:A
/external/clang/test/Index/
H A Dannotate-tokens.c8 void *xx = ptr ? : &x; local
67 // CHECK: Keyword: "void" [8:3 - 8:7] VarDecl=xx:8:9 (Definition)
68 // CHECK: Punctuation: "*" [8:8 - 8:9] VarDecl=xx:8:9 (Definition)
69 // CHECK: Identifier: "xx" [8:9 - 8:11] VarDecl=xx:8:9 (Definition)
70 // CHECK: Punctuation: "=" [8:12 - 8:13] VarDecl=xx:8:9 (Definition)
H A Dload-exprs.c7 void *xx = ptr ? : &x; local
50 // CHECK: load-exprs.c:7:9: VarDecl=xx:7:9 (Definition) Extent=[7:3 - 7:24]
/external/skia/src/opts/
H A DSkBitmapProcState_opts_arm.cpp46 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1); local
52 "ldmia %[xx]!, {r5, r7, r9, r11} \n\t" // load ptrs to pixels 0-7
93 : [xx] "+r" (xx), [count8] "+r" (count8), [colors] "+r" (colors)
99 src = srcAddr[*xx++]; *colors++ = table[src];
132 const uint16_t* xx = (const uint16_t*)(xy + 1); local
138 "ldmia %[xx]!, {r5, r7, r9, r11} \n\t" // load ptrs to pixels 0-7
170 "ldrh r4, [%[xx]], #2 \n\t" // load pixel ptr
177 : [xx] "+r" (xx), [coun
[all...]
/external/valgrind/main/memcheck/tests/amd64/
H A Dfxsave-amd64.c133 void show ( unsigned char* buf, int xx )
139 if (xx && isFPLsbs(i))
140 printf("xx ");
154 int xx = argc > 1; local
167 show(buf1, xx);
174 show(buf2, xx);
180 show(buf3, xx);
191 show(buf1, xx);
198 show(buf2, xx);
204 show(buf3, xx);
[all...]
/external/valgrind/main/memcheck/tests/x86/
H A Dfxsave.c88 void show ( unsigned char* buf, int xx )
94 if (xx && isFPLsbs(i))
95 printf("xx ");
109 int xx = argc > 1; local
119 show(buf1, xx);
126 show(buf2, xx);
132 show(buf3, xx);
/external/freetype/src/base/
H A Dftlcdfil.c50 FT_UInt val1, xx; local
66 for ( xx = 2; xx < width; xx++ )
71 val = line[xx];
80 line[xx - 2] = (FT_Byte)pix;
89 line[xx - 2] = (FT_Byte)pix;
93 line[xx - 1] = (FT_Byte)pix;
192 FT_UInt xx; local
195 for ( xx
[all...]
/external/skia/bench/
H A DVertBench.cpp53 SkScalar xx = 0; local
55 pts->set(xx, yy);
57 xx += dx;
/external/skia/src/ports/
H A DSkFontHost_gamma.cpp44 int xx = SkScalarRound(SkFloatToScalar(x * 255)); local
45 // printf(" %d\n", xx);
46 table[i] = SkToU8(xx);
/external/speex/libspeex/
H A Dfilters_sse.h56 __m128 xx; local
59 xx = _mm_load_ps1(x+i);
60 yy = _mm_add_ss(xx, mem[0]);
68 mem[0] = _mm_add_ps(mem[0], _mm_mul_ps(xx, num[0]));
74 mem[1] = _mm_add_ps(mem[1], _mm_mul_ps(xx, num[1]));
79 mem[2] = _mm_add_ps(mem[2], _mm_mul_ps(xx, num[2]));
106 __m128 xx; local
109 xx = _mm_load_ps1(x+i);
110 yy = _mm_add_ss(xx, mem[0]);
118 mem[0] = _mm_add_ps(mem[0], _mm_mul_ps(xx, nu
161 __m128 xx; local
208 __m128 xx; local
259 __m128 xx; local
305 __m128 xx; local
[all...]
H A Dltp_sse.h76 __m128 sum, *xx, *yy; local
79 xx = x;
82 sum = _mm_add_ps(sum, _mm_mul_ps(xx[0], yy[0]));
83 sum = _mm_add_ps(sum, _mm_mul_ps(xx[1], yy[1]));
84 xx += 2;

Completed in 1387 milliseconds

1234