HomeSort by relevance Sort by last modified time
    Searched defs:xy (Results 26 - 50 of 196) sorted by null

12 3 4 5 6 7 8

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYSeriesFormatter.java 17 package com.androidplot.xy;
XYSeriesRenderer.java 17 package com.androidplot.xy;
BarFormatter.java 17 package com.androidplot.xy;
RectRegion.java 17 package com.androidplot.xy;
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYStepCalculatorTest.java 17 package com.androidplot.xy;
SimpleXYSeriesTest.java 17 package com.androidplot.xy;
RectRegionTest.java 17 package com.androidplot.xy;
XYLegendWidgetTest.java 17 package com.androidplot.xy;
XYSeriesRendererTest.java 17 package com.androidplot.xy;
  /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/libopus/celt/
pitch.h 164 opus_val32 xy=0; local
166 xy = MAC16_16(xy, x[i], y[i]);
167 return xy;
  /external/skia/src/core/
SkBitmapProcState_procs.h 27 int xy = x * y >> 3; local
28 return a00 * (32 - 2*y - 2*x + xy) +
29 a01 * (2*x - xy) +
30 a10 * (2*y - xy) +
31 a11 * xy;
55 int xy = x * y >> 4; local
56 uint32_t result = a00 * (16 - y - x + xy) +
57 a01 * (x - xy) +
58 a10 * (y - xy) +
59 a11 * xy;
70 int xy = x * y; local
    [all...]
Sk4x4f.h 79 float32x4x2_t xy = vuzpq_f32(x.fVec, y.fVec), local
81 rb = vuzpq_f32(xy.val[0], zw.val[0]),
82 ga = vuzpq_f32(xy.val[1], zw.val[1]);
SkRect.cpp 71 Sk4s xy = Sk4s::Load(pts); local
72 accum = accum * xy;
73 min = Sk4s::Min(min, xy);
74 max = Sk4s::Max(max, xy);
  /external/skia/src/gpu/
GrPathUtils.h 84 const SkPoint* xy = reinterpret_cast<const SkPoint*>(xyPtr); local
86 uv->fX = sx * xy->fX + kx * xy->fY + tx;
87 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /external/speex/libspeex/
filters_bfin.h 89 spx_word32_t *xy; local
95 xy = xy2+1;
113 "P2 = %0;\n\t" /* Fused xy */
183 "R5 = [I2--];\n\t" /* load xy */
221 : : "m" (xy), "m" (_x), "m" (_y), "m" (numden), "m" (N), "m" (ord), "m" (mem)
  /external/syslinux/com32/lib/sys/
ansi.c 42 .xy = {0, 0},
76 struct curxy xy = st->xy; local
89 if (xy.x > 0)
90 xy.x--;
94 int nsp = 8 - (xy.x & 7);
102 xy.y++;
104 xy.x = 0;
107 xy.x = 0;
127 op->write_char(xy.x, xy.y, ch, st)
    [all...]
  /frameworks/native/libs/math/include/math/
quat.h 69 TVec2<T> xy; member in union:android::details::TQuaternion::__anon41288
vec3.h 51 TVec2<T> xy; member in union:android::details::TVec3::__anon41295
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationUiDevice.java 71 int[] xy = new int[2]; local
72 rootView.getLocationOnScreen(xy);
73 if (xy[0] == 0 && xy[1] == 0) {
78 rect.offset(xy[0], xy[1]);
80 Bitmap.createBitmap(rect.width() + xy[0], rect.height() + xy[1], Config.ARGB_8888);
  /external/libopus/celt/x86/
pitch_sse.c 112 float xy; local
125 _mm_store_ss(&xy, sum);
128 xy = MAC16_16(xy, x[i], y[i]);
130 return xy;
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
CustomViewActions.java 86 int[] xy = view.getLocationOnScreen(); local
92 x = xy[0] + hDelta;
95 x = xy[0] + w + hDelta;
98 x = xy[0] + w / 2 + hDelta;
104 y = xy[1] + vDelta;
107 y = xy[1] + h + vDelta;
110 y = xy[1] + h / 2 + vDelta;
  /frameworks/base/libs/hwui/tests/unit/
SkiaBehaviorTests.cpp 51 SkShader::TileMode xy[2]; local
52 ASSERT_TRUE(s->isABitmap(&bitmap, nullptr, xy))
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 181 struct dd xy, r; local
247 * (xy.hi, xy.lo) = x * y (exact)
248 * (r.hi, r.lo) = xy.hi + z (exact)
249 * adj = xy.lo + r.lo (inexact; low bit is sticky)
252 xy = dd_mul(vxs, ys);
253 r = dd_add(xy.hi, zs);
264 return (xy.hi + vzs + ldexp(xy.lo, spread));
275 adj = vrlo + xy.lo
    [all...]

Completed in 446 milliseconds

12 3 4 5 6 7 8