HomeSort by relevance Sort by last modified time
    Searched refs:py1 (Results 1 - 14 of 14) sorted by null

  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 92 const uchar4 *py0, const uchar4 *py1, const uchar4 *py2,
101 convert_float4(py1[x1]) * coeff[3] +
102 convert_float4(py1[x]) * coeff[4] +
103 convert_float4(py1[x2]) * coeff[5] +
114 const uchar2 *py0, const uchar2 *py1, const uchar2 *py2,
123 convert_float2(py1[x1]) * coeff[3] +
124 convert_float2(py1[x]) * coeff[4] +
125 convert_float2(py1[x2]) * coeff[5] +
135 const uchar *py0, const uchar *py1, const uchar *py2,
144 ((float)py1[x1]) * coeff[3]
201 const uchar4 *py1 = (const uchar4 *)(pin + stride * info->current.y); local
248 const uchar2 *py1 = (const uchar2 *)(pin + stride * info->current.y); local
293 const uchar *py1 = (const uchar *)(pin + stride * info->current.y); local
338 const float4 *py1 = (const float4 *)(pin + stride * info->current.y); local
383 const float2 *py1 = (const float2 *)(pin + stride * info->current.y); local
427 const float *py1 = (const float *)(pin + stride * info->current.y); local
    [all...]
rsCpuIntrinsicConvolve5x5.cpp 90 const uchar4 *py0, const uchar4 *py1, const uchar4 *py2, const uchar4 *py3, const uchar4 *py4,
105 convert_float4(py1[x0]) * coeff[5] +
106 convert_float4(py1[x1]) * coeff[6] +
107 convert_float4(py1[x2]) * coeff[7] +
108 convert_float4(py1[x3]) * coeff[8] +
109 convert_float4(py1[x4]) * coeff[9] +
133 const uchar2 *py0, const uchar2 *py1, const uchar2 *py2, const uchar2 *py3, const uchar2 *py4,
148 convert_float2(py1[x0]) * coeff[5] +
149 convert_float2(py1[x1]) * coeff[6] +
150 convert_float2(py1[x2]) * coeff[7]
367 const uchar4 *py1 = (const uchar4 *)(pin + stride * y1); local
427 const uchar2 *py1 = (const uchar2 *)(pin + stride * y1); local
476 const uchar *py1 = (const uchar *)(pin + stride * y1); local
525 const float4 *py1 = (const float4 *)(pin + stride * y1); local
574 const float2 *py1 = (const float2 *)(pin + stride * y1); local
623 const float *py1 = (const float *)(pin + stride * y1); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
stroker.h 78 void stroker_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,
85 void stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,
path.h 113 void path_cubic_to(struct path *p, float px1, float py1,
stroker.c 583 void stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,
588 VGfloat coords[6] = {px1, py1, px2, py2, x, y};
590 debug_printf("emit curve %f, %f, %f, %f, %f, %f\n", px1, py1,
595 if (px1 == x && py1 == y) {
600 stroker->back2_y = py1;
827 void stroker_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,
831 VGfloat coords[] = {px1, py1,
836 px1, py1, px2, py2, x, y);
    [all...]
path.c     [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
PolygonRegionTest.java 124 float fy1, fy2, fy3, py1, py2, py3; local
160 py1 = sin * fx1 + cos * fy1;
167 py1 += worldOriginY;
173 renderer.line(px1, py1, px2, py2);
175 renderer.line(px3, py3, px1, py1);
  /external/pdfium/xfa/src/fwl/src/theme/
checkboxtp.cpp 463 FX_FLOAT px1, py1, px2, py2; local
496 py1 = pt12.y - pt1.y;
500 pt1.y + py1 * FWLTHEME_BEZIER,
504 py1 = pt23.y - pt2.y;
508 pt2.y + py1 * FWLTHEME_BEZIER,
512 py1 = pt34.y - pt3.y;
516 pt3.y + py1 * FWLTHEME_BEZIER,
520 py1 = pt45.y - pt4.y;
524 pt4.y + py1 * FWLTHEME_BEZIER,
528 py1 = pt51.y - pt5.y;
    [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp 1101 double px1,py1,px2,py2; local
    [all...]
  /external/opencv3/modules/videostab/src/
inpainting.cpp 249 int py1 = qy1 - dy; local
252 px1 >= 0 && px1 < mask1.cols && py1 >= 0 && py1 < mask1.rows && mask1(py1,px1))
294 Point3_<uchar> cp = frame1(py1,px1), cq = frame1(qy1,qx1);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Intersector.java 68 float py1 = p.y - a.y; local
69 boolean side12 = (b.x - a.x) * py1 - (b.y - a.y) * px1 > 0;
70 if ((c.x - a.x) * py1 - (c.y - a.y) * px1 > 0 == side12) return false;
78 float py1 = py - ay; local
79 boolean side12 = (bx - ax) * py1 - (by - ay) * px1 > 0;
80 if ((cx - ax) * py1 - (cy - ay) * px1 > 0 == side12) return false;
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
pi.c 619 OPJ_INT32 l_px0, l_py0, l_px1, py1; local
661 py1 = opj_int_ceildivpow2(l_ry1, (OPJ_INT32)l_pdy) << l_pdy;
664 l_ph = (l_ry0==l_ry1)?0:(OPJ_UINT32)((py1 - l_py0) >> l_pdy);
743 OPJ_INT32 l_px0, l_py0, l_px1, py1; local
783 py1 = opj_int_ceildivpow2(l_ry1, (OPJ_INT32)l_pdy) << l_pdy;
785 l_ph = (l_ry0==l_ry1)?0:(OPJ_UINT32)((py1 - l_py0) >> l_pdy);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBodyHelpers.cpp 725 const btVector3 py1=lerp(corner10,corner11,ty); local
729 x[IDX(ix,iy)]=lerp(py0,py1,tx);
873 const btVector3 py1=lerp(corner10,corner11,ty); local
877 x[IDX(ix,iy)]=lerp(py0,py1,tx);
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Utils.cpp 173 FX_FLOAT py1 = pts[i][1].y - pts[i][0].y;
178 << pts[i][0].y + py1 * PWL_BEZIER << " "
    [all...]

Completed in 354 milliseconds