HomeSort by relevance Sort by last modified time
    Searched defs:cx (Results 1 - 25 of 368) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
construct_type.pass.cpp 50 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/
forward.pass.cpp 31 const int cx = 101; local
38 && std::forward<const int&>(cx) == 101
39 && std::forward<const int>(cx) == 101;
move.pass.cpp 37 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)), "");
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
39 cx+= *X++;
45 c[0]=cx*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
61 cx+=temp[0];
67 c[0]=cx*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
construct_type.pass.cpp 50 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));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/
forward.pass.cpp 31 const int cx = 101; local
38 && std::forward<const int&>(cx) == 101
39 && std::forward<const int>(cx) == 101;
  /external/skia/experimental/svg/model/
SkSVGCircle.cpp 15 void SkSVGCircle::setCx(const SkSVGLength& cx) {
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);
SkSVGEllipse.cpp 15 void SkSVGEllipse::setCx(const SkSVGLength& cx) {
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/skqp/experimental/svg/model/
SkSVGCircle.cpp 15 void SkSVGCircle::setCx(const SkSVGLength& cx) {
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);
SkSVGEllipse.cpp 15 void SkSVGEllipse::setCx(const SkSVGLength& cx) {
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/mesa3d/src/mesa/math/
m_clip_tmp.h 59 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 + cw < 0) mask |= CLIP_RIGHT_BIT
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/skia/gm/
filterindiabox.cpp 48 SkScalar cx = SkScalarHalf(fBM.width()); variable
55 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
downsamplebitmap.cpp 22 int cx = (x * numChecks) / size; local
24 if ((cx+cy)%2) {
filterbitmap.cpp 50 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) {
inversepaths.cpp 13 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
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) {
21 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
27 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
29 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
33 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
35 path.moveTo(cx - l / 2, cy);
36 path.lineTo(cx + l / 2, cy);
83 SkScalar cx = slideWidth / 2 + slideBoundary local
    [all...]
  /external/skia/tests/
InfRectTest.cpp 42 int cx = r.centerX(); local
44 REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
PathOpsSimplifyDegenerateThreadedTest.cpp 18 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);
PathOpsSimplifyTrianglesThreadedTest.cpp 19 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)) {
  /external/skqp/gm/
filterindiabox.cpp 48 SkScalar cx = SkScalarHalf(fBM.width()); variable
55 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
  /external/skqp/tests/
InfRectTest.cpp 42 int cx = r.centerX(); local
44 REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
PathOpsSimplifyDegenerateThreadedTest.cpp 18 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);
PathOpsSimplifyTrianglesThreadedTest.cpp 19 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)) {
  /cts/tests/tests/view/src/android/view/cts/
PixelCopyGLProducerCtsActivity.java 65 int cx = mWidth / 2; local
70 glScissor(0, cy, cx, mHeight - cy);
73 glScissor(cx, cy, mWidth - cx, mHeight - cy);
76 glScissor(0, 0, cx, cy);
79 glScissor(cx, 0, mWidth - cx, cy);
  /external/linux-kselftest/tools/testing/selftests/x86/
check_initial_reg_state.c 19 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/glx/
glxcurrent.c 151 struct glx_context *cx = __glXGetCurrentContext(); local
153 if (cx == &dummyContext) {
157 return (GLXContext) cx;

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>