HomeSort by relevance Sort by last modified time
    Searched refs:xy (Results 51 - 75 of 477) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/gpu/effects/
GrCircleEffect.fp 42 d = (length((circle.xy - sk_FragCoord.xy) * circle.w) - 1.0) * circle.z;
44 d = (1.0 - length((circle.xy - sk_FragCoord.xy) * circle.w)) * circle.z;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
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/skia/src/opts/
SkBitmapProcState_matrix_neon.h 29 uint32_t xy[], int count, int x, int y) {
41 *xy++ = TILEY_PROCF(mapper.fixedY(), maxY);
47 memset(xy, 0, count * sizeof(uint16_t));
58 decal_nofilter_scale_neon(xy, fixedFx, fixedDx, count);
71 int16_t *dst16 = (int16_t *)xy;
99 xy = (uint32_t *) dst16;
102 uint16_t* xx = (uint16_t*)xy;
110 uint32_t xy[], int count, int x, int y) {
134 int16_t *dst16 = (int16_t *) xy;
171 xy = (uint32_t *) dst16
    [all...]
SkBitmapProcState_opts_SSSE3.cpp 29 // @param xy is the location where the xy parameters for four pixels should be
33 // suitable to mask the bottom 14 bits of a XY value.
35 // suitable to mask the bottom 4 bits of a XY value.
43 inline void PrepareConstantsTwoPixelPairs(const uint32_t* xy,
52 const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
75 // @param xy is the location where the xy parameters for four pixels should be
79 // suitable to mask the bottom 14 bits of a XY value.
81 // suitable to mask the bottom 4 bits of a XY value
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
StepFormatter.java 17 package com.androidplot.xy;
StepRenderer.java 17 package com.androidplot.xy;
BezierLineAndPointFormatter.java 17 package com.androidplot.xy;
XYRegionFormatter.java 17 package com.androidplot.xy;
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DemoAppWidgetProvider.java 26 import com.androidplot.xy.XYSeries;
27 import com.androidplot.xy.LineAndPointFormatter;
28 import com.androidplot.xy.SimpleXYSeries;
29 import com.androidplot.xy.XYPlot;
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
SimpleXYPlotActivity.java 21 import com.androidplot.xy.SimpleXYSeries;
22 import com.androidplot.xy.XYSeries;
23 import com.androidplot.xy.*;
ListViewActivity.java 29 import com.androidplot.xy.XYSeries;
30 import com.androidplot.xy.LineAndPointFormatter;
31 import com.androidplot.xy.SimpleXYSeries;
32 import com.androidplot.xy.XYPlot;
  /external/fonttools/Lib/fontTools/misc/
transform.py 88 def __init__(self, xx=1, xy=0, yx=0, yy=1, dx=0, dy=0):
99 self.__affine = xx, xy, yx, yy, dx, dy
111 xx, xy, yx, yy, dx, dy = self.__affine
112 return (xx*x + yx*y + dx, xy*x + yy*y + dy)
123 xx, xy, yx, yy, dx, dy = self.__affine
124 return [(xx*x + yx*y + dx, xy*x + yy*y + dy) for x, y in points]
238 xx, xy, yx, yy, dx, dy = self.__affine
239 det = xx*yy - yx*xy
240 xx, xy, yx, yy = yy/det, -xy/det, -yx/det, xx/de
    [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;
  /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;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 169 struct dd xy, r; local
235 * (xy.hi, xy.lo) = x * y (exact)
236 * (r.hi, r.lo) = xy.hi + z (exact)
237 * adj = xy.lo + r.lo (inexact; low bit is sticky)
240 xy = dd_mul(vxs, ys);
241 r = dd_add(xy.hi, zs);
252 return (xy.hi + vzs + ldexpl(xy.lo, spread));
263 adj = vrlo + xy.lo
    [all...]
  /external/dng_sdk/source/
dng_temperature.cpp 74 void dng_temperature::Set_xy_coord (const dng_xy_coord &xy)
79 real64 u = 2.0 * xy.x / (1.5 - xy.x + 6.0 * xy.y);
80 real64 v = 3.0 * xy.y / (1.5 - xy.x + 6.0 * xy.y);
244 // Convert to xy coordinates.
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 76 void ClampX_ClampY_nofilter_scale(const SkBitmapProcState& s, uint32_t xy[],
78 return NoFilterProc_Scale<ClampTileProcs, true>(s, xy, count, x, y);
80 void ClampX_ClampY_nofilter_affine(const SkBitmapProcState& s, uint32_t xy[],
82 return NoFilterProc_Affine<ClampTileProcs>(s, xy, count, x, y);
288 static int nofilter_trans_preamble(const SkBitmapProcState& s, uint32_t** xy,
291 **xy = s.fIntTileProcY(mapper.intY(), s.fPixmap.height());
292 *xy += 1; // bump the ptr
298 uint32_t xy[], int count, int x, int y) {
301 int xpos = nofilter_trans_preamble(s, &xy, x, y);
305 memset(xy, 0, count * sizeof(uint16_t))
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
MotionEventHelper.java 62 float[] xy = new float[pointerCoords.length * 2]; local
64 xy[2 * i] = pointerCoords[i].x;
65 xy[2 * i + 1] = pointerCoords[i].y;
67 m.mapPoints(xy);
69 pointerCoords[i].x = xy[2 * i];
70 pointerCoords[i].y = xy[2 * i + 1];
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
RenderBundle.java 20 import com.androidplot.xy.XYSeriesFormatter;
  /frameworks/base/core/java/android/hardware/camera2/params/
MeteringRectangle.java 103 * <p>The point {@code xy}'s data is copied; the reference is not retained.</p>
105 * @param xy a non-{@code null} {@link Point} with both x,y >= 0
112 public MeteringRectangle(Point xy, Size dimensions, int meteringWeight) {
113 checkNotNull(xy, "xy must not be null");
116 mX = checkArgumentNonnegative(xy.x, "x must be nonnegative");
117 mY = checkArgumentNonnegative(xy.y, "y must be nonnegative");
  /external/skia/src/pathops/
SkPathOpsCurve.cpp 13 double SkDCurve::nearPoint(SkPath::Verb verb, const SkDPoint& xy, const SkDPoint& opp) const {
21 if (!AlmostBetweenUlps(minX, xy.fX, maxX)) {
30 if (!AlmostBetweenUlps(minY, xy.fY, maxY)) {
34 SkDLine perp = {{ xy, { xy.fX + opp.fY - xy.fY, xy.fY + xy.fX - opp.fX }}};
39 double dist = xy.distance(i.pt(index));
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
verify.rs 219 #define printCell(txt, a, xy) \
228 rsDebug(txt, rsGetElementAt_uchar4(a, xy.x, xy.y)); \
231 rsDebug(txt, rsGetElementAt_uchar3(a, xy.x, xy.y)); \
234 rsDebug(txt, rsGetElementAt_uchar2(a, xy.x, xy.y)); \
237 rsDebug(txt, rsGetElementAt_uchar(a, xy.x, xy.y)); \
243 rsDebug(txt, rsGetElementAt_float4(a, xy.x, xy.y));
    [all...]
  /external/libpng/
png.c 1726 png_xy xy; local
    [all...]
  /external/pdfium/third_party/libpng16/
png.c 1726 png_xy xy; local
    [all...]
  /external/skia/third_party/libpng/
png.c 1726 png_xy xy; local
    [all...]

Completed in 1367 milliseconds

1 23 4 5 6 7 8 91011>>