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

1 2 3 4 5

  /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/mesa3d/src/glsl/tests/
swiz-02.glsl 10 a = b.xy;
  /frameworks/base/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/opts/
SkBitmapProcState_opts_SSE2.h 21 const uint32_t* xy,
24 const uint32_t* xy,
SkBitmapProcState_opts_arm.cpp 28 const uint32_t* SK_RESTRICT xy,
33 const uint32_t* SK_RESTRICT xy,
44 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
46 xy[0] * s.fBitmap->rowBytes());
57 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1);
119 const uint32_t* SK_RESTRICT xy,
124 const uint32_t* SK_RESTRICT xy,
135 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
136 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
143 const uint16_t* xx = (const uint16_t*)(xy + 1)
    [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/skia/src/core/
SkBitmapProcState_filter.h 113 int xy = x * y; local
116 int scale = 256 - 16*y - 16*x + xy;
120 scale = 16*x - xy;
124 scale = 16*y - xy;
128 lo += (a11 & mask) * xy;
129 hi += ((a11 >> 8) & mask) * xy;
143 int xy = x * y; local
146 int scale = 256 - 16*y - 16*x + xy;
150 scale = 16*x - xy;
154 scale = 16*y - xy;
    [all...]
SkBitmapProcState_matrix.h 37 uint32_t xy[], int count, int x, int y) {
52 *xy++ = TILEY_PROCF(fx, maxY);
58 memset(xy, 0, count * sizeof(uint16_t));
68 decal_nofilter_scale(xy, fx, dx, count);
78 *xy++ = (a << 16) | b;
80 *xy++ = (b << 16) | a;
85 *xy++ = (a << 16) | b;
87 *xy++ = (b << 16) | a;
90 uint16_t* xx = (uint16_t*)xy;
102 uint32_t xy[], int count, int x, int y)
    [all...]
SkBitmapProcState_sample.h 20 const uint32_t* SK_RESTRICT xy,
32 uint32_t XY;
36 XY = *xy++;
37 SkASSERT((XY >> 16) < (unsigned)s.fBitmap->height() &&
38 (XY & 0xFFFF) < (unsigned)s.fBitmap->width());
39 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
42 XY = *xy++
    [all...]
SkBitmapProcState_matrix_repeat.h 56 uint32_t xy[], int count, int x, int y) {
71 *xy++ = TILEY_PROCF(fx, maxY);
77 memset(xy, 0, count * sizeof(uint16_t));
87 decal_nofilter_scale(xy, fx, dx, count);
108 int16_t *dst16 = (int16_t *)xy;
148 xy = (uint32_t *) dst16;
159 *xy++ = (a << 16) | b;
161 *xy++ = (b << 16) | a;
166 *xy++ = (a << 16) | b;
168 *xy++ = (b << 16) | a
    [all...]
SkBitmapProcState_matrix_clamp.h 58 uint32_t xy[], int count, int x, int y) {
73 *xy++ = TILEY_PROCF(fx, maxY);
79 memset(xy, 0, count * sizeof(uint16_t));
89 decal_nofilter_scale(xy, fx, dx, count);
110 int16_t *dst16 = (int16_t *)xy;
150 xy = (uint32_t *) dst16;
153 uint16_t* xx = (uint16_t*)xy;
164 uint32_t xy[], int count, int x, int y) {
193 int16_t *dst16 = (int16_t *) xy;
264 xy = (uint32_t *) dst16
    [all...]
  /frameworks/base/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...]
  /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))
  /external/clang/test/Analysis/
idempotent-operations.c 208 int xy, wrap, pred, a, b, c; local
210 xy = s->RDar8431728_E[n];
213 a = s->RDar8431728_B[xy - 1];
214 b = s->RDar8431728_B[xy - 1 - wrap];
215 c = s->RDar8431728_B[xy - wrap];
223 *RDar8431728_B_ptr = &s->RDar8431728_B[xy];
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
updateSettings.m 46 xy = zeros((K+1)*4,1);
48 xy(1:4) = [fe(1) fe(1) x(1) x(1)]';
51 xy((kk-1)*4+(1:4)) = [x(kk-1) x(kk-1) x(kk) x(kk)]';
54 xy(end-3:end) = [x(K) x(K) fe(end) fe(end)]';
56 %plot(xy,yy,'LineWidth',2)
57 %fill(xy,yy,'y')
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleTest.java 200 int[] xy = new int[2]; local
201 view.getLocationOnScreen(xy);
206 int bottom = xy[1] + view.getHeight();
211 assertTrue(xy[1] < bottomOfRoot);
221 int[] xy = new int[2]; local
222 view.getLocationOnScreen(xy);
227 int bottom = xy[1] + view.getHeight();
233 assertTrue(xy[1] < xyRoot[1]);
  /external/freetype/src/base/
ftcalc.c 704 FT_Fixed xx, xy, yx, yy; local
710 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
711 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
713 yy = FT_MulFix( a->yx, b->xy ) + FT_MulFix( a->yy, b->yy );
715 b->xx = xx; b->xy = xy;
733 FT_MulFix( matrix->xy, matrix->yx );
738 matrix->xy = - FT_DivFix( matrix->xy, delta )
758 FT_Fixed xx, xy, yx, yy; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
OccurrenceRenderer.java 24 import org.jfree.chart.renderer.xy.XYItemRendererState;
25 import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
27 import org.jfree.data.xy.XYDataset;
  /external/opencv/cv/src/
cvoptflowlk.cpp 46 float xy; member in struct:__anon8844
317 II[address].xy = GradX * GradY;
337 II[address].xy = GradX * GradY;
360 II[address].xy = GradX * GradY;
378 WII[address].xy = 0;
388 WII[address].xy += II[address + jj].xy * Ker;
402 WII[address].xy = 0;
412 WII[address].xy += (II[address - jj].xy + II[address + jj].xy) * Ker
    [all...]
  /development/tools/mkstubs/tests/data/
TestTemplateClass.java 53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) {

Completed in 2550 milliseconds

1 2 3 4 5