Searched refs:cy (Results 1 - 25 of 145) sorted by relevance

123456

/external/eigen/blas/f2c/
H A Dcomplexdots.c22 *incx, complex *cy, integer *incy)
29 --cy;
33 cdotcw_(n, &cx[1], incx, &cy[1], incy, &res);
38 *incx, complex *cy, integer *incy)
45 --cy;
49 cdotuw_(n, &cx[1], incx, &cy[1], incy, &res);
54 doublecomplex *cy, integer *incy)
61 --cy;
65 zdotcw_(n, &cx[1], incx, &cy[1], incy, &res);
70 doublecomplex *cy, intege
21 cdotc_(integer *n, complex *cx, integer *incx, complex *cy, integer *incy) argument
37 cdotu_(integer *n, complex *cx, integer *incx, complex *cy, integer *incy) argument
53 zdotc_(integer *n, doublecomplex *cx, integer *incx, doublecomplex *cy, integer *incy) argument
69 zdotu_(integer *n, doublecomplex *cx, integer *incx, doublecomplex *cy, integer *incy) argument
[all...]
/external/skia/experimental/svg/model/
H A DSkSVGCircle.cpp19 void SkSVGCircle::setCy(const SkSVGLength& cy) { argument
20 fCy = cy;
35 if (const auto* cy = v.as<SkSVGLengthValue>()) {
36 this->setCy(*cy);
51 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical); local
54 return std::make_tuple(SkPoint::Make(cx, cy), r);
H A DSkSVGEllipse.cpp19 void SkSVGEllipse::setCy(const SkSVGLength& cy) { argument
20 fCy = cy;
39 if (const auto* cy = v.as<SkSVGLengthValue>()) {
40 this->setCy(*cy);
60 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical); local
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2)
/external/skia/gm/
H A Dinversepaths.cpp13 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) { argument
14 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
20 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) { argument
21 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
27 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) { argument
29 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
33 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) { argument
35 path.moveTo(cx - l / 2, cy);
36 path.lineTo(cx + l / 2, cy);
84 SkScalar cy local
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_clip_tmp.h60 const GLfloat cy = from[1]; local
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
98 vProj[i][1] = cy * oow;
140 const GLfloat cy = from[1]; local
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
158 if (-cy
195 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
231 const GLfloat cx = from[0], cy = from[1]; local
[all...]
H A Dm_debug_clip.c83 const GLfloat cy = from[1]; local
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
107 vProj[i][1] = cy * oow;
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
143 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
144 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT;
177 const GLfloat cx = from[0], cy = from[1]; local
181 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
182 else if ( cy <
[all...]
/external/fonttools/Lib/fontTools/misc/
H A 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] + [pt1, pt4]
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*t
[all...]
/external/fonttools/Tools/fontTools/misc/
H A 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] + [pt1, pt4]
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*t
[all...]
/external/pdfium/third_party/agg23/
H A Dagg_math.h50 FX_FLOAT cx, FX_FLOAT cy, FX_FLOAT dx, FX_FLOAT dy,
53 FX_FLOAT num = ((ay - cy) * (dx - cx)) - ((ax - cx) * (dy - cy));
54 FX_FLOAT den = ((bx - ax) * (dy - cy)) - ((by - ay) * (dx - cx));
49 calc_intersection(FX_FLOAT ax, FX_FLOAT ay, FX_FLOAT bx, FX_FLOAT by, FX_FLOAT cx, FX_FLOAT cy, FX_FLOAT dx, FX_FLOAT dy, FX_FLOAT* x, FX_FLOAT* y) argument
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
H A DPieRenderer.java84 float cy = bounds.centerY();
99 PointF r1Outer = calculateLineEnd(cx, cy, rad, startAngle);
100 PointF r1Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle);
103 PointF r2Outer = calculateLineEnd(cx, cy, rad, startAngle + sweep);
104 PointF r2Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle + sweep);
120 clip.lineTo(cx, cy);
131 cy - donutSizePx,
133 cy + donutSizePx),
146 canvas.drawCircle(cx, cy, donutSizePx, f.getInnerEdgePaint());
149 canvas.drawCircle(cx, cy, ra
[all...]
/external/skia/src/pathops/
H A DSkPathOpsConic.cpp142 double cx, cy, cz; local
145 cy = fPts[2].fY;
149 cy = conic_eval_numerator(&fPts[0].fY, fWeight, t2);
153 cy = fPts[0].fY;
157 double by = 2 * dy - (ay + cy) / 2;
159 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}
/external/libvncserver/rfb/
H A Drfbregion.h60 int cx, int cy, int cw, int ch);
63 int cx, int cy, int cx2, int cy2);
/external/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp19 int cy = state.fC >> 2; local
38 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
47 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy);
77 int cy = c >> 2; local
78 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp20 int cy = state.fC >> 2; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
50 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy);
85 int cy = c >> 2; local
86 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
H A DWritePixelsTest.cpp215 for (int cy = 0; cy < DEV_H; ++cy) {
218 if (writeRect.contains(cx, cy)) {
220 int by = cy - writeY;
228 "Write performed premul: %d", cx, cy, bmpPMColor, canvasPixel, mul);
232 SkPMColor testColor = get_canvas_color(cx, cy);
235 " Should be 0x%08x, got 0x%08x. ", cx, cy, testColor, canvasPixel);
240 if (cy != DEV_H -1) {
/external/mesa3d/src/mesa/swrast/
H A Ds_aatritemp.h222 /* (cx,cy) = center of fragment */
223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F;
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);
284 /* (cx,cy) = center of fragment */
285 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F;
290 array->z[ix] = (GLuint) solve_plane(cx, cy, zPlan
[all...]
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h30 int cy = clip.fTop; local
40 const uint8_t* bits = srcMask.getAddr1(cx, cy);
41 SK_BLITBWMASK_DEVTYPE* device = dst.SK_BLITBWMASK_GETADDR(cx, cy);
H A DSkMaskFilter.cpp83 int cy = center.y(); local
89 m.fBounds.fBottom = cy;
99 m.fBounds.fBottom = cy;
109 m.fBounds.fTop = cy + 1;
119 m.fBounds.fTop = cy + 1;
129 outerR.top() + cy - mask.fBounds.top(),
131 outerR.bottom() + (cy + 1 - mask.fBounds.bottom()));
177 *mask.getAddr8(mask.fBounds.left() + x, mask.fBounds.top() + cy));
188 *mask.getAddr8(mask.fBounds.right() - x - 1, mask.fBounds.top() + cy));
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.h40 VGfloat cx, cy; member in struct:arc
/external/skia/src/effects/gradients/
H A DSkSweepGradient.h15 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&);
/external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
H A Dbios_console.c62 int cy = ( params[0] - 1 ); local
66 if ( cy < 0 )
67 cy = 0;
73 "d" ( ( cy << 8 ) | cx ) );
/external/syslinux/gpxe/src/interface/efi/
H A Defi_console.c64 int cy = ( params[0] - 1 ); local
68 if ( cy < 0 )
69 cy = 0;
71 conout->SetCursorPosition ( conout, cx, cy );
/external/webrtc/webrtc/base/
H A Dwin32window.h32 int x, int y, int cx, int cy);
/external/clang/test/SemaCXX/
H A Dwarn-unused-filescoped.cpp84 const unsigned int cy = 0; variable
85 int f5() { return cy; }
/external/skia/include/effects/
H A DSkGradientShader.h171 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy,
174 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, argument
176 return MakeSweep(cx, cy, colors, pos, count, 0, NULL);
191 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy,
195 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, argument
198 return MakeSweep(cx, cy, colors, std::move(colorSpace), pos, count, 0, NULL);

Completed in 630 milliseconds

123456