Searched defs:cx (Results 1 - 25 of 123) sorted by relevance

12345

/external/eigen/blas/f2c/
H A Dcomplexdots.c21 complex cdotc_(integer *n, complex *cx, integer argument
30 --cx;
33 cdotcw_(n, &cx[1], incx, &cy[1], incy, &res);
37 complex cdotu_(integer *n, complex *cx, integer argument
46 --cx;
49 cdotuw_(n, &cx[1], incx, &cy[1], incy, &res);
53 doublecomplex zdotc_(integer *n, doublecomplex *cx, integer *incx, argument
62 --cx;
65 zdotcw_(n, &cx[1], incx, &cy[1], incy, &res);
69 doublecomplex zdotu_(integer *n, doublecomplex *cx, intege argument
[all...]
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
H A Dconstruct_type.pass.cpp50 int const& cx = x; local
51 A.construct(ptr, x, cx, std::move(x));
83 int const& cx = x; local
84 A.construct(ptr, x, cx, std::move(x));
116 int const& cx = x; local
117 A.construct(ptr, x, cx, std::move(x));
/external/libcxx/test/std/utilities/utility/forward/
H A Dforward.pass.cpp31 const int cx = 101; local
38 && std::forward<const int&>(cx) == 101
39 && std::forward<const int>(cx) == 101;
H A Dmove.pass.cpp37 const int& cx = x; variable
71 static_assert(std::is_same<decltype(std::move(cx)), const int&&>::value, "");
72 static_assert(noexcept(std::move(cx)), "");
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.h40 VGfloat cx, cy; member in struct:arc
/external/skia/experimental/svg/model/
H A DSkSVGCircle.cpp15 void SkSVGCircle::setCx(const SkSVGLength& cx) { argument
16 fCx = cx;
30 if (const auto* cx = v.as<SkSVGLengthValue>()) {
31 this->setCx(*cx);
50 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); local
54 return std::make_tuple(SkPoint::Make(cx, cy), r);
H A DSkSVGEllipse.cpp15 void SkSVGEllipse::setCx(const SkSVGLength& cx) { argument
16 fCx = cx;
34 if (const auto* cx = v.as<SkSVGLengthValue>()) {
35 this->setCx(*cx);
59 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); local
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2)
/external/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp18 int cx = state.fC & 0x03; local
38 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
47 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy);
76 int cx = c & 0x03; local
78 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp19 int cx = state.fC & 0x03; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
50 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy);
84 int cx = c & 0x03; local
86 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
H A DInfRectTest.cpp42 int cx = r.centerX(); local
44 REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
H A DPathOpsSimplifyQuadThreadedTest.cpp22 int cx = state.fC & 0x03; local
42 SkIntToScalar(cx), SkIntToScalar(cy));
55 pathStr.appendf(" path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp22 int cx = state.fC & 0x03; local
42 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
56 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy);
/external/linux-kselftest/tools/testing/selftests/x86/
H A Dcheck_initial_reg_state.c19 unsigned long ax, bx, cx, dx, si, di, bp, sp, flags; variable
30 "mov %rcx, cx\n\t"
49 "mov %ecx, cx\n\t"
71 if (ax || bx || cx || dx || si || di || bp
80 SHOW(cx);
/external/mesa3d/src/mesa/math/
H A Dm_clip_tmp.h59 const GLfloat cx = from[0]; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT;
97 vProj[i][0] = cx * oow;
139 const GLfloat cx = from[0]; local
146 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
147 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
156 if (-cx
195 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
231 const GLfloat cx = from[0], cy = from[1]; local
[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/skia/gm/
H A Dfilterindiabox.cpp49 SkScalar cx = SkScalarHalf(fBM.width()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
H A Ddownsamplebitmap.cpp22 int cx = (x * numChecks) / size; local
24 if ((cx+cy)%2) {
H A Dfilterbitmap.cpp50 SkScalar cx = SkScalarHalf(fBM.width()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
162 int cx = (x * fNumChecks) / fSize; variable
164 if ((cx+cy)%2) {
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);
83 SkScalar cx local
[all...]
/external/skia/include/effects/
H A DSkGradientShader.h161 @param cx The X coordinate of the center of the sweep
162 @param cx The Y coordinate of the center of the sweep
171 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);
181 @param cx The X coordinate of the center of the sweep
182 @param cx The Y coordinate of the center of the sweep
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, c
[all...]
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h29 int cx = clip.fLeft; local
40 const uint8_t* bits = srcMask.getAddr1(cx, cy);
41 SK_BLITBWMASK_DEVTYPE* device = dst.SK_BLITBWMASK_GETADDR(cx, cy);
43 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
58 int left_edge = cx - maskLeft;
/external/clang/test/SemaCXX/
H A Ddefault-assignment-operator.cpp30 void f(X x, const X cx) { argument
31 x = cx; // expected-note{{assignment operator for 'X' first required here}}
32 x = cx;
/external/mesa3d/src/glx/
H A Dglxcurrent.c172 struct glx_context *cx = __glXGetCurrentContext(); local
174 if (cx == &dummyContext) {
178 return (GLXContext) cx;
/external/openssh/openbsd-compat/
H A Dport-linux.c182 char *oldctx, *newctx, *cx; local
192 if ((cx = index(oldctx, ':')) == NULL || (cx = index(cx + 1, ':')) ==
202 if (strncmp(cx, SSH_SELINUX_UNCONFINED_TYPE,
208 len = cx - oldctx + 1;
211 if ((cx = index(cx + 1, ':')))
212 strlcat(newctx, cx, newlen);
/external/skia/fuzz/
H A DFuzzGradients.cpp218 SkScalar cx, cy; local
220 fuzz->next(&cx, &cy, &useLocalMatrix, &useGlobalMatrix);
234 p.setShader(SkGradientShader::MakeSweep(cx, cy, colors.data(),
237 p.setShader(SkGradientShader::MakeSweep(cx, cy, colors.data(),

Completed in 562 milliseconds

12345