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

1 2 3 4 5 6

  /external/linux-tools-perf/util/
xyarray.c 7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); local
9 if (xy != NULL) {
10 xy->entry_size = entry_size;
11 xy->row_size = row_size;
14 return xy;
17 void xyarray__delete(struct xyarray *xy)
19 free(xy);
xyarray.h 13 void xyarray__delete(struct xyarray *xy);
15 static inline void *xyarray__entry(struct xyarray *xy, int x, int y)
17 return &xy->contents[x * xy->row_size + y * xy->entry_size];
  /external/clang/test/PCH/
chain-ext_vector.c 10 return f4.xy; // expected-error{{float2}}
ext_vector.c 9 return f4.xy; // expected-error{{float2}}
  /frameworks/base/test-runner/src/android/test/
ViewAsserts.java 37 int[] xy = new int[2]; local
38 view.getLocationOnScreen(xy);
43 int y = xy[1] - xyRoot[1];
59 int[] xy = new int[2]; local
60 view.getLocationOnScreen(xy);
65 int y = xy[1] - xyRoot[1];
79 int[] xy = new int[2]; local
80 view.getLocationOnScreen(xy);
85 int y = xy[1] - xyRoot[1];
99 int[] xy = new int[2] local
117 int[] xy = new int[2]; local
135 int[] xy = new int[2]; local
154 int[] xy = new int[2]; local
172 int[] xy = new int[2]; local
191 int[] xy = new int[2]; local
209 int[] xy = new int[2]; local
228 int[] xy = new int[2]; local
246 int[] xy = new int[2]; local
265 int[] xy = new int[2]; local
283 int[] xy = new int[2]; local
304 int[] xy = new int[2]; local
    [all...]
TouchUtils.java 233 int[] xy = new int[2]; local
234 v.getLocationOnScreen(xy);
239 final float x = xy[0] + (viewWidth / 2.0f);
240 float fromY = xy[1] + (viewHeight / 2.0f);
253 int[] xy = new int[2]; local
254 v.getLocationOnScreen(xy);
259 final float x = xy[0] + (viewWidth / 2.0f);
260 float y = xy[1] + (viewHeight / 2.0f);
293 int[] xy = new int[2]; local
294 v.getLocationOnScreen(xy);
328 int[] xy = new int[2]; local
389 int[] xy = new int[2]; local
476 int[] xy = new int[2]; local
572 int[] xy = new int[2]; local
622 int[] xy = new int[2]; local
671 int[] xy = new int[2]; local
718 int[] xy = new int[2]; local
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_opts_SSSE3.h 11 const uint32_t* xy,
14 const uint32_t* xy,
SkBitmapProcState_opts_SSE2.h 13 const uint32_t* xy,
16 const uint32_t* xy,
20 void ClampX_ClampY_filter_scale_SSE2(const SkBitmapProcState& s, uint32_t xy[],
23 uint32_t xy[], int count, int x, int y);
25 uint32_t xy[], int count, int x, int y);
27 uint32_t xy[], int count, int x, int y);
SkBitmapProcState_opts_SSE2.cpp 15 const uint32_t* xy,
24 uint32_t XY = *xy++;
25 unsigned y0 = XY >> 14;
27 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
54 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
121 const uint32_t* xy,
130 uint32_t XY = *xy++;
131 unsigned y0 = XY >> 14
    [all...]
SkBitmapProcState_opts_arm.cpp 17 const uint32_t* SK_RESTRICT xy,
22 const uint32_t* SK_RESTRICT xy,
33 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
35 xy[0] * s.fBitmap->rowBytes());
46 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1);
108 const uint32_t* SK_RESTRICT xy,
113 const uint32_t* SK_RESTRICT xy,
124 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
125 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
132 const uint16_t* xx = (const uint16_t*)(xy + 1)
    [all...]
  /external/mesa3d/src/glsl/tests/
swiz-02.glsl 10 a = b.xy;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
g_pitch.c 37 Word16 xy, yy, exp_xy, exp_yy, gain; local
41 xy = extract_h(Dot_product12_asm(xn, y1, L_subfr, &exp_xy));
46 xy = extract_h(Dot_product12(xn, y1, L_subfr, &exp_xy));
53 g_coeff[2] = xy;
56 /* If (xy < 0) gain = 0 */
57 if (xy < 0)
60 /* compute gain = xy/yy */
62 xy >>= 1; /* Be sure xy < yy */
63 gain = div_s(xy, yy)
    [all...]
  /external/skia/src/core/
SkBitmapProcState_filter.h 100 int xy = x * y; local
103 int scale = 256 - 16*y - 16*x + xy;
107 scale = 16*x - xy;
111 scale = 16*y - xy;
115 lo += (a11 & mask) * xy;
116 hi += ((a11 >> 8) & mask) * xy;
130 int xy = x * y; local
133 int scale = 256 - 16*y - 16*x + xy;
137 scale = 16*x - xy;
141 scale = 16*y - xy;
    [all...]
SkBitmapProcState_matrix.h 31 uint32_t xy[], int count, int x, int y) {
46 *xy++ = TILEY_PROCF(fx, maxY);
52 memset(xy, 0, count * sizeof(uint16_t));
62 decal_nofilter_scale(xy, fx, dx, count);
72 *xy++ = (a << 16) | b;
74 *xy++ = (b << 16) | a;
79 *xy++ = (a << 16) | b;
81 *xy++ = (b << 16) | a;
84 uint16_t* xx = (uint16_t*)xy;
96 uint32_t xy[], int count, int x, int y)
    [all...]
SkBitmapProcState_sample.h 27 const uint32_t* SK_RESTRICT xy,
39 uint32_t XY;
43 XY = *xy++;
44 SkASSERT((XY >> 16) < (unsigned)s.fBitmap->height() &&
45 (XY & 0xFFFF) < (unsigned)s.fBitmap->width());
46 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
49 XY = *xy++
    [all...]
SkBitmapProcState.h 135 void S32_opaque_D32_filter_DX(const SkBitmapProcState& s, const uint32_t xy[],
137 void S32_alpha_D32_filter_DX(const SkBitmapProcState& s, const uint32_t xy[],
139 void ClampX_ClampY_filter_scale(const SkBitmapProcState& s, uint32_t xy[],
141 void ClampX_ClampY_nofilter_scale(const SkBitmapProcState& s, uint32_t xy[],
144 uint32_t xy[], int count, int x, int y);
146 uint32_t xy[], int count, int x, int y);
SkBitmapProcState_matrix_repeat.h 61 uint32_t xy[], int count, int x, int y) {
76 *xy++ = TILEY_PROCF(fx, maxY);
82 memset(xy, 0, count * sizeof(uint16_t));
92 decal_nofilter_scale(xy, fx, dx, count);
113 int16_t *dst16 = (int16_t *)xy;
153 xy = (uint32_t *) dst16;
164 *xy++ = (a << 16) | b;
166 *xy++ = (b << 16) | a;
171 *xy++ = (a << 16) | b;
173 *xy++ = (b << 16) | a
    [all...]
  /external/clang/test/Sema/
ext_vector_components.c 27 f = vec4.xy.x; // legal, shorten
33 vec2.xx = vec2_2.xy; // expected-error {{vector is not assignable (contains duplicate components)}}
34 vec2.yx = vec2_2.xy;
36 vec4.xy.w; // expected-error {{vector component access exceeds type 'float2'}}
41 vec4p->yz = vec4p->xy;
designated-initializers.c 146 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = { variable in typeref:struct:XY
147 0, 0, &xy[0].xx.a, &xy[0].xx, &global_float,
148 [1].xx = 0, &xy[1].xx.a, &xy[1].xx, &global_float,
153 &xy[2].xx.a, &xy[2].xx, &global_float
  /external/clang/test/Analysis/
taint-tester.c 54 struct XYStruct xy = {2, 3, 11}; local
55 scanf("%d", &xy.y);
56 scanf("%d", &xy.x);
57 int tx = xy.x; // expected-warning + {{tainted}}
58 int ty = xy.y; // FIXME: This should be tainted as well.
59 char ntz = xy.z;// no warning
61 scanf("%d %d", &xy.y, &xy.x);
62 int ttx = xy.x; // expected-warning + {{tainted}}
63 int tty = xy.y; // expected-warning + {{tainted}
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 148 Word16 xy, yy, exp_xy, exp_yy, gain;
171 xy = extract_h (L_shl (s, exp_xy));
173 // If (xy < 0) gain = 0
175 if (xy <= 0)
188 // compute gain = xy/yy
190 xy = shr (xy, 1); // Be sure xy < yy
191 gain = div_s (xy, yy);
236 Word16 xy, yy, exp_xy, exp_yy, gain local
    [all...]
g_pitch.cpp 172 Word16 xy, yy, exp_xy, exp_yy, gain;
225 xy = pv_round (L_shl (s, exp_xy));
235 xy = pv_round (L_shl (s, exp_xy));
241 g_coeff[2] = xy;
244 // If (xy < 4) gain = 0
246 i = sub (xy, 4);
251 // compute gain = xy/yy
253 xy = shr (xy, 1); // Be sure xy < y
309 Word16 xy; local
    [all...]
  /external/valgrind/main/none/tests/s390x/
xor.stdout.exp 49 xy 0000000000000000 ^ 0000000000000000 = 0000000000000000 (cc=0)
50 xy 0000000000000001 ^ 0000000000000000 = 0000000000000001 (cc=1)
51 xy 000000000000FFFF ^ 0000000000000000 = 000000000000FFFF (cc=1)
52 xy 0000000000007FFF ^ 0000000000000000 = 0000000000007FFF (cc=1)
53 xy 0000000000008000 ^ 0000000000000000 = 0000000000008000 (cc=1)
54 xy 00000000FFFFFFFF ^ 0000000000000000 = 00000000FFFFFFFF (cc=1)
55 xy 0000000080000000 ^ 0000000000000000 = 0000000080000000 (cc=1)
56 xy 000000007FFFFFFF ^ 0000000000000000 = 000000007FFFFFFF (cc=1)
57 xy AAAAAAAAAAAAAAAA ^ 0000000000000000 = AAAAAAAAAAAAAAAA (cc=1)
58 xy 8000000000000000 ^ 0000000000000000 = 8000000000000000 (cc=0
    [all...]
  /external/compiler-rt/lib/ppc/
DD.h 19 #define LOWORDER(xy,xHi,xLo,yHi,yLo) \
20 (((((xHi)*(yHi) - (xy)) + (xHi)*(yLo)) + (xLo)*(yHi)) + (xLo)*(yLo))
  /frameworks/compile/libbcc/runtime/lib/ppc/
DD.h 19 #define LOWORDER(xy,xHi,xLo,yHi,yLo) \
20 (((((xHi)*(yHi) - (xy)) + (xHi)*(yLo)) + (xLo)*(yHi)) + (xLo)*(yLo))

Completed in 791 milliseconds

1 2 3 4 5 6