Searched defs:px1 (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/opts/
H A DSk4px_none.h29 Sk4px px1 = Sk16b(); local
30 memcpy(&px1, px, 4);
31 return px1;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c1651 void path_cubic_to(struct path *p, float px1, float py1, argument
1659 data[0] = px1; data[1] = py1;
H A Dstroker.c583 void stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1, argument
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, argument
831 VGfloat coords[] = {px1, py1,
836 px1, py1, px2, py2, x, y);
/external/opencv/cvaux/src/
H A Dcvepilines.cpp1101 double px1,py1,px2,py2; local
1111 px1 = p2_start.x;
1116 del = (py1-py2)*(ex1-ex2)-(px1-px2)*(ey1-ey2);
1123 delA = (ey1-ey2)*(ex1-px1) + (ex1-ex2)*(py1-ey1);
1124 delB = (py1-py2)*(ex1-px1) + (px1-px2)*(py1-ey1);
1135 delX = (px1-px2)*(ey1*(ex1-ex2)-ex1*(ey1-ey2))+
1136 (ex1-ex2)*(px1*(py1-py2)-py1*(px1-px2));
1139 (ey1-ey2)*(px1*(py
[all...]

Completed in 119 milliseconds