Home
last modified time | relevance | path

Searched refs:cy (Results 1 – 25 of 257) sorted by relevance

1234567891011

/external/eigen/blas/f2c/
Dcomplexdots.c22 *incx, complex *cy, integer *incy) in cdotc_() argument
29 --cy; in cdotc_()
33 cdotcw_(n, &cx[1], incx, &cy[1], incy, &res); in cdotc_()
38 *incx, complex *cy, integer *incy) in cdotu_() argument
45 --cy; in cdotu_()
49 cdotuw_(n, &cx[1], incx, &cy[1], incy, &res); in cdotu_()
54 doublecomplex *cy, integer *incy) in zdotc_() argument
61 --cy; in zdotc_()
65 zdotcw_(n, &cx[1], incx, &cy[1], incy, &res); in zdotc_()
70 doublecomplex *cy, integer *incy) in zdotu_() argument
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
Dplurals.txt427 cy 0.0 cilo. 0.0 peint
428 cy 0.00 cilo. 0.00 peint
429 cy 0.000 cilo. 0.000 peint
430 cy 0.001 cilo. 0.001 peint
431 cy 0.002 cilo. 0.002 peint
432 cy 0.003 cilo. 0.003 peint
433 cy 0.004 cilo. 0.004 peint
434 cy 0.006 cilo. 0.006 peint
435 cy 0.01 cilo. 0.01 peint
436 cy 0.010 cilo. 0.010 peint
[all …]
/external/fonttools/Lib/fontTools/misc/
DbezierTools.py33 (ax, ay), (bx, by), (cx, cy) = calcQuadraticParameters(pt1, pt2, pt3)
41 points = [(ax*t*t + bx*t + cx, ay*t*t + by*t + cy) for t in roots if 0 <= t < 1] + [pt1, pt3]
56 (ax, ay), (bx, by), (cx, cy), (dx, dy) = calcCubicParameters(pt1, pt2, pt3, pt4)
63 yRoots = [t for t in solveQuadratic(ay3, by2, cy) if 0 <= t < 1]
66 …points = [(ax*t*t*t + bx*t*t + cx * t + dx, ay*t*t*t + by*t*t + cy * t + dy) for t in roots] + [pt…
204 cx, cy = c
215 c1y = ay*t1**2 + by*t1 + cy
229 cx, cy = c
241 c1y = (2*by*t1 + cy + 3*ay*t1**2) * delta
243 d1y = ay*t1**3 + by*t1**2 + cy*t1 + dy
[all …]
/external/mesa3d/src/mesa/math/
Dm_clip_tmp.h60 const GLfloat cy = from[1]; in TAG() local
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); in TAG()
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); in TAG()
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT; in TAG()
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT; in TAG()
98 vProj[i][1] = cy * oow; in TAG()
140 const GLfloat cy = from[1]; in TAG() local
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); in TAG()
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); in TAG()
158 if (-cy + cw < 0) mask |= CLIP_TOP_BIT; in TAG()
[all …]
Dm_debug_clip.c83 const GLfloat cy = from[1]; in ref_cliptest_points4() local
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points4()
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points4()
107 vProj[i][1] = cy * oow; in ref_cliptest_points4()
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; in ref_cliptest_points3() local
143 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points3()
144 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points3()
177 const GLfloat cx = from[0], cy = from[1]; in ref_cliptest_points2() local
181 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points2()
182 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points2()
/external/skia/gm/
Dinversepaths.cpp14 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) { in generate_square() argument
15 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w); in generate_square()
21 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) { in generate_rect_line() argument
22 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0); in generate_rect_line()
28 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) { in generate_circle() argument
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction); in generate_circle()
34 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) { in generate_line() argument
36 path.moveTo(cx - l / 2, cy); in generate_line()
37 path.lineTo(cx + l / 2, cy); in generate_line()
84 SkScalar cy = slideHeight / 2 + slideBoundary; in onDraw() local
[all …]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
DPieRenderer.java84 float cy = bounds.centerY(); in drawSegment() local
99 PointF r1Outer = calculateLineEnd(cx, cy, rad, startAngle); in drawSegment()
100 PointF r1Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle); in drawSegment()
103 PointF r2Outer = calculateLineEnd(cx, cy, rad, startAngle + sweep); in drawSegment()
104 PointF r2Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle + sweep); in drawSegment()
120 clip.lineTo(cx, cy); in drawSegment()
131 cy - donutSizePx, in drawSegment()
133 cy + donutSizePx), in drawSegment()
146 canvas.drawCircle(cx, cy, donutSizePx, f.getInnerEdgePaint()); in drawSegment()
149 canvas.drawCircle(cx, cy, rad, f.getOuterEdgePaint()); in drawSegment()
[all …]
/external/skia/src/svg/parser/
DSkSVGCircle.cpp17 SVG_ATTRIBUTE(cy),
26 SkScalar cx, cy, r; in DEFINE_SVG_INFO() local
28 SkParse::FindScalar(f_cy.c_str(), &cy); in DEFINE_SVG_INFO()
32 top = cy - r; in DEFINE_SVG_INFO()
34 bottom = cy + r; in DEFINE_SVG_INFO()
DSkSVGEllipse.cpp17 SVG_ATTRIBUTE(cy),
27 SkScalar cx, cy, rx, ry; in DEFINE_SVG_INFO() local
29 SkParse::FindScalar(f_cy.c_str(), &cy); in DEFINE_SVG_INFO()
34 top = cy - ry; in DEFINE_SVG_INFO()
36 bottom = cy + ry; in DEFINE_SVG_INFO()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
DUVProjectionGenerator.java120 float cx = bt.getCenter().x, cy = bt.getCenter().y; in tubeProjection() local
126 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0); in tubeProjection()
147 float ySideFactor = Math.signum(triangle.get1().y-cy)+ in tubeProjection()
148 Math.signum(triangle.get2().y-cy)+ in tubeProjection()
149 Math.signum(triangle.get3().y-cy); in tubeProjection()
179 float cx = bs.getCenter().x, cy = bs.getCenter().y, cz = bs.getCenter().z; in sphereProjection() local
185 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0); in sphereProjection()
194 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, positions.get(i + 2)-cz); in sphereProjection()
208 float ySideFactor = Math.signum(triangle.get1().y-cy)+ in sphereProjection()
209 Math.signum(triangle.get2().y-cy)+ in sphereProjection()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_aatritemp.h223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable
227 array->z[count] = (GLuint) solve_plane(cx, cy, zPlane);
229 array->rgba[count][RCOMP] = solve_plane_chan(cx, cy, rPlane);
230 array->rgba[count][GCOMP] = solve_plane_chan(cx, cy, gPlane);
231 array->rgba[count][BCOMP] = solve_plane_chan(cx, cy, bPlane);
232 array->rgba[count][ACOMP] = solve_plane_chan(cx, cy, aPlane);
285 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable
290 array->z[ix] = (GLuint) solve_plane(cx, cy, zPlane);
292 array->rgba[ix][RCOMP] = solve_plane_chan(cx, cy, rPlane);
293 array->rgba[ix][GCOMP] = solve_plane_chan(cx, cy, gPlane);
[all …]
/external/libpng/contrib/tools/
Dgenpng.c387 double cy = (arg->y1+arg->y2)/2; in square_check_line() local
390 if (square_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in square_check_line()
397 if (wx > 0 && wy > 0 && square_check(x, y, cx-wx, cy-wy, cx+wx, cy+wy)) in square_check_line()
465 const double cy = (y1 + y2)/2; in circle_check() local
470 y = (y - cy)/dy; in circle_check()
496 double cy = (arg->y1+arg->y2)/2; in circle_check_line() local
499 if (circle_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in circle_check_line()
506 if (wx > 0 && wy > 0 && circle_check(x, y, cx-wx, cy-wy, cx+wx, cy+wy)) in circle_check_line()
/external/skia/tests/
DPathOpsSimplifyDegenerateThreadedTest.cpp23 int cy = state.fC >> 2; in testSimplifyDegeneratesMain() local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyDegeneratesMain()
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy); in testSimplifyDegeneratesMain()
81 int cy = c >> 2; in DEF_TEST() local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax); in DEF_TEST()
DPathOpsSimplifyTrianglesThreadedTest.cpp24 int cy = state.fC >> 2; in testSimplifyTrianglesMain() local
44 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyTrianglesMain()
54 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy); in testSimplifyTrianglesMain()
89 int cy = c >> 2; in DEF_TEST() local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) { in DEF_TEST()
DPathOpsSimplifyQuadralateralsThreadedTest.cpp24 int cy = state.fC >> 2; in testSimplifyQuadralateralsMain() local
43 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyQuadralateralsMain()
56 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy); in testSimplifyQuadralateralsMain()
/external/pdfium/core/src/fxge/agg/agg23/
Dagg_math.h50 FX_FLOAT cx, FX_FLOAT cy, FX_FLOAT dx, FX_FLOAT dy, in calc_intersection() argument
53 FX_FLOAT num = FXSYS_Mul(ay - cy, dx - cx) - FXSYS_Mul(ax - cx, dy - cy); in calc_intersection()
54 FX_FLOAT den = FXSYS_Mul(bx - ax, dy - cy) - FXSYS_Mul(by - ay, dx - cx); in calc_intersection()
Dfx_agg_rasterizer_scanline_aa.cpp64 AGG_INLINE void cell_aa::set_coord(int cx, int cy) in set_coord() argument
67 y = cy; in set_coord()
69 AGG_INLINE void cell_aa::set(int cx, int cy, int c, int a) in set() argument
72 y = cy; in set()
231 int cy = (y1 + y2) >> 1; in render_line() local
232 render_line(x1, y1, cx, cy); in render_line()
233 render_line(cx, cy, x2, y2); in render_line()
/external/mesa3d/src/gallium/state_trackers/vega/
Darc.c247 arc->cx, arc->cy, in find_angles()
248 &arc->cx, &arc->cy); in find_angles()
260 vec0[1] = arc->y1 - arc->cy; in find_angles()
262 vec1[1] = arc->y2 - arc->cy; in find_angles()
266 vec0[0], vec0[1], vec1[0], vec1[1], arc->cx, arc->cy); in find_angles()
328 y1 = arc->cy + a_cos_eta1 * arc->sin_theta + in check_endpoints()
335 y2 = arc->cy + a_cos_eta2 * arc->sin_theta + in check_endpoints()
369 double cx, cy; in arc_init() local
384 cy = cy1; in arc_init()
387 cy = cy0; in arc_init()
[all …]
/external/fonttools/Lib/fontTools/pens/
DpointInsidePen.py122 cy = (y2 - dy) * 3.0
123 by = (y3 - y2) * 3.0 - cy
124 ay = y4 - dy - cy - by
125 solutions = sorted(solveCubic(ay, by, cy, dy - y))
144 direction = 3*ay*t2 + 2*by*t + cy
/external/skia/src/core/
DSkMaskFilter.cpp83 int cy = center.y(); in draw_nine_clipped() local
89 m.fBounds.fBottom = cy; in draw_nine_clipped()
99 m.fBounds.fBottom = cy; in draw_nine_clipped()
109 m.fBounds.fTop = cy + 1; in draw_nine_clipped()
119 m.fBounds.fTop = cy + 1; in draw_nine_clipped()
129 outerR.top() + cy - mask.fBounds.top(), in draw_nine_clipped()
131 outerR.bottom() + (cy + 1 - mask.fBounds.bottom())); in draw_nine_clipped()
177 *mask.getAddr8(mask.fBounds.left() + x, mask.fBounds.top() + cy)); in draw_nine_clipped()
188 *mask.getAddr8(mask.fBounds.right() - x - 1, mask.fBounds.top() + cy)); in draw_nine_clipped()
DSkBlitBWMaskTemplate.h31 int cy = clip.fTop; in SK_BLITBWMASK_NAME() local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy); in SK_BLITBWMASK_NAME()
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy); in SK_BLITBWMASK_NAME()
/external/libvncserver/vncterm/
DVNConsole.c408 int cx=x/c->cWidth,cy=y/c->cHeight,pos; in vcPtrAddEventProc() local
410 if(cy<0) cy=0; else if(cy>=c->height) cy=c->height-1; in vcPtrAddEventProc()
411 pos=cy*c->width+cx; in vcPtrAddEventProc()
424 cx=c->markEnd; cy=pos; in vcPtrAddEventProc()
426 cx=pos; cy=c->markEnd; in vcPtrAddEventProc()
429 if(cy<c->markStart) in vcPtrAddEventProc()
430 cy--; in vcPtrAddEventProc()
433 while(cx<=cy) { in vcPtrAddEventProc()
/external/skia/third_party/etc1/
Detc1.cpp546 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image() local
547 etc1_byte* q = block + (cy * 4) * 3; in etc1_encode_image()
548 const etc1_byte* p = pIn + pixelSize * x + stride * (y + cy); in etc1_encode_image()
599 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_decode_image() local
600 const etc1_byte* q = block + (cy * 4) * 3; in etc1_decode_image()
601 etc1_byte* p = pOut + pixelSize * x + stride * (y + cy); in etc1_decode_image()
/external/skia/include/effects/
DSkGradientShader.h118 static SkShader* CreateSweep(SkScalar cx, SkScalar cy,
122 static SkShader* CreateSweep(SkScalar cx, SkScalar cy, in CreateSweep() argument
124 return CreateSweep(cx, cy, colors, pos, count, 0, NULL); in CreateSweep()
/external/icu/icu4c/source/data/coll/
Dcy.txt6 // * Source File: <path>/common/collation/cy.xml
9 cy{

1234567891011