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

12 3 4 5 6

  /external/androidplot/AndroidPlot-Core/src/main/java/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/libaom/libaom/third_party/fastfeat/
fast_9.c 5 typedef struct { int x, y; } xy; typedef in typeref:struct:__anon26800
    [all...]
  /external/libopus/celt/
pitch.h 163 opus_val32 xy=0; local
165 xy = MAC16_16(xy, x[i], y[i]);
166 return xy;
  /external/skia/src/compute/tests/groups/
groups.c 82 float const xy = (float)ii * 2.0f + 2.0f; local
85 skc_path_ellipse(pb,xy,xy,0.5f,1.5f);
89 skc_path_ellipse(pb,xy,xy,1.0f,1.0f);
  /external/skia/src/core/
SkRect.cpp 64 Sk4s xy = Sk4s::Load(pts); local
65 accum = accum * xy;
66 min = Sk4s::Min(min, xy);
67 max = Sk4s::Max(max, xy);
  /external/skia/src/gpu/
GrPathUtils.h 79 const SkPoint* xy = reinterpret_cast<const SkPoint*>(xyPtr); local
81 uv->fX = sx * xy->fX + kx * xy->fY + tx;
82 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /external/skqp/src/compute/tests/groups/
groups.c 82 float const xy = (float)ii * 2.0f + 2.0f; local
85 skc_path_ellipse(pb,xy,xy,0.5f,1.5f);
89 skc_path_ellipse(pb,xy,xy,1.0f,1.0f);
  /external/skqp/src/core/
SkRect.cpp 64 Sk4s xy = Sk4s::Load(pts); local
65 accum = accum * xy;
66 min = Sk4s::Min(min, xy);
67 max = Sk4s::Max(max, xy);
  /external/skqp/src/gpu/
GrPathUtils.h 79 const SkPoint* xy = reinterpret_cast<const SkPoint*>(xyPtr); local
81 uv->fX = sx * xy->fX + kx * xy->fY + tx;
82 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ShellUtils.java 55 final int[] xy = new int[2]; local
56 view.getLocationOnScreen(xy);
59 final int x = (int) (xy[0] + (viewWidth / 2.0f));
60 final int y = (int) (xy[1] + (viewHeight / 2.0f));
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
ShellUtils.java 55 final int[] xy = new int[2]; local
56 view.getLocationOnScreen(xy);
59 final int x = (int) (xy[0] + (viewWidth / 2.0f));
60 final int y = (int) (xy[1] + (viewHeight / 2.0f));
  /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/freetype/include/freetype/internal/
cffotypes.h 95 FT_Fixed xx, xy; /* transformation matrix coefficients */ member in struct:CFF_Transform_
  /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;
vq_sse2.c 48 float xy, yy; local
85 xy = yy = 0;
131 xy = _mm_cvtss_f32(xy4);
161 xy4 = _mm_load1_ps(&xy);
193 xy = ADD32(xy, EXTEND32(X[best_id]));
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 183 struct dd xy, r; local
249 * (xy.hi, xy.lo) = x * y (exact)
250 * (r.hi, r.lo) = xy.hi + z (exact)
251 * adj = xy.lo + r.lo (inexact; low bit is sticky)
254 xy = dd_mul(vxs, ys);
255 r = dd_add(xy.hi, zs);
266 return (xy.hi + vzs + ldexp(xy.lo, spread));
277 adj = vrlo + xy.lo
    [all...]

Completed in 1228 milliseconds

12 3 4 5 6