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

  /external/skia/src/opts/
Sk4px_none.h 33 Sk4px px1 = Sk16b(); local
34 memcpy(&px1, px, 4);
35 return px1;
  /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) {
599 stroker->back2_x = px1;
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 123 float fx1, fx2, fx3, px1, px2, px3; local
159 px1 = cos * fx1 - sin * fy1;
166 px1 += worldOriginX;
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
495 px1 = pt12.x - pt1.x;
499 m_pCheckPath->BezierTo(pt1.x + px1 * FWLTHEME_BEZIER,
503 px1 = pt23.x - pt2.x;
507 m_pCheckPath->BezierTo(pt2.x + px1 * FWLTHEME_BEZIER,
511 px1 = pt34.x - pt3.x;
515 m_pCheckPath->BezierTo(pt3.x + px1 * FWLTHEME_BEZIER,
519 px1 = pt45.x - pt4.x;
523 m_pCheckPath->BezierTo(pt4.x + px1 * FWLTHEME_BEZIER,
527 px1 = pt51.x - pt5.x;
    [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp 1101 double px1,py1,px2,py2; local
    [all...]
  /external/skia/src/core/
SkLinearBitmapPipeline.cpp 484 void VECTORCALL getFewPixels(int n, Sk4f xs, Sk4f ys, Sk4f* px0, Sk4f* px1, Sk4f* px2) {
492 *px1 = getPixel(fSrc, bufferLoc[1]);
500 void VECTORCALL get4Pixels(Sk4f xs, Sk4f ys, Sk4f* px0, Sk4f* px1, Sk4f* px2, Sk4f* px3) {
505 *px1 = getPixel(fSrc, bufferLoc[1]);
569 Sk4f px0, px1, px2; variable
570 fStrategy.getFewPixels(n, xs, ys, &px0, &px1, &px2);
572 if (n >= 2) fNext->placePixel(px1);
577 Sk4f px0, px1, px2, px3; variable
578 fStrategy.get4Pixels(xs, ys, &px0, &px1, &px2, &px3);
579 fNext->place4Pixels(px0, px1, px2, px3)
    [all...]
  /external/selinux/libsepol/cil/src/
cil_find.c 266 static int cil_permissionx_match_any(struct cil_permissionx *px1, struct cil_permissionx *px2)
272 if (px1->kind != px2->kind) goto exit;
274 if (!ebitmap_match_any(px1->perms, px2->perms)) goto exit;
276 cl1 = cil_expand_class(px1->obj);
  /external/opencv3/modules/videostab/src/
inpainting.cpp 248 int px1 = qx1 - dx; 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 67 float px1 = p.x - a.x; 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;
77 float px1 = px - ax; 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/fpdfsdk/src/pdfwindow/
PWL_Utils.cpp 172 FX_FLOAT px1 = pts[i][1].x - pts[i][0].x;
177 csAP << pts[i][0].x + px1 * PWL_BEZIER << " "
    [all...]

Completed in 1564 milliseconds