HomeSort by relevance Sort by last modified time
    Searched defs:cx (Results 26 - 50 of 251) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerQuadratic4x4_Test.cpp 24 int cx = state.c & 0x03; local
43 path.quadTo(bx, by, cx, cy);
53 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
  /external/chromium_org/third_party/skia/gm/
downsamplebitmap.cpp 145 int cx = (x * fNumChecks) / fSize; variable
147 if ((cx+cy)%2) {
filterbitmap.cpp 52 SkScalar cx = SkScalarHalf(fBM.width()); local
58 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
166 int cx = (x * fNumChecks) / fSize; variable
168 if ((cx+cy)%2) {
filterindiabox.cpp 50 SkScalar cx = SkScalarHalf(fBM.width()); local
57 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
inversepaths.cpp 14 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
15 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
21 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) {
22 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
28 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
34 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
36 path.moveTo(cx - l / 2, cy);
37 path.lineTo(cx + l / 2, cy);
86 SkScalar cx = slideWidth / 2 + slideBoundary local
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleBlur.cpp 32 const float cx = bm.width() * 0.5f; local
39 float dx = x - cx;
41 float d = (dx + dy) / (cx/2);
SampleOvalTest.cpp 55 SkScalar cx = SkScalarHalf(fSize.width()); local
64 SkScalar dist = SkPoint::Length(px - cx, py - cy);
  /external/chromium_org/third_party/skia/src/core/
SkBlitBWMaskTemplate.h 30 int cx = clip.fLeft; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
59 int left_edge = cx - maskLeft;
  /external/chromium_org/third_party/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 22 int cx = state.fC & 0x03; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
80 int cx = c & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
PathOpsSimplifyQuadThreadedTest.cpp 23 int cx = state.fC & 0x03; local
43 SkIntToScalar(cx), SkIntToScalar(cy));
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 23 int cx = state.fC & 0x03; local
43 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
56 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_msvc.h 163 mov cx, v local
164 xchg [eax], cx // NOLINT
165 mov v, cx
  /external/mesa3d/src/glx/
glxcurrent.c 172 struct glx_context *cx = __glXGetCurrentContext(); local
174 if (cx == &dummyContext) {
178 return (GLXContext) cx;
  /external/pixman/pixman/
pixman-conical-gradient.c 67 double cx = 1.; local
88 cx = image->common.transform->matrix[0][0] / 65536.;
118 rx += cx;
153 rx += cx;
  /external/skia/experimental/Intersection/
CubicParameterization_TestUtility.cpp 8 double ax, bx, cx, dx; local
10 alt_set_abcd(&cubic[0].x, ax, bx, cx, dx);
12 set_abcd(&cubic[0].x, ax, bx, cx, dx);
19 if (!try_alt) calc_bc(dx, bx, cx);
24 double cx = cubic[2].x;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
EdgeWalkerQuadratic4x4_Test.cpp 24 int cx = state.c & 0x03; local
43 path.quadTo(bx, by, cx, cy);
53 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
  /external/skia/gm/
downsamplebitmap.cpp 148 int cx = (x * fNumChecks) / fSize; variable
150 if ((cx+cy)%2) {
filterbitmap.cpp 52 SkScalar cx = SkScalarHalf(fBM.width()); local
58 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
166 int cx = (x * fNumChecks) / fSize; variable
168 if ((cx+cy)%2) {
filterindiabox.cpp 50 SkScalar cx = SkScalarHalf(fBM.width()); local
57 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
inversepaths.cpp 14 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
15 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
21 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) {
22 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
28 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
34 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
36 path.moveTo(cx - l / 2, cy);
37 path.lineTo(cx + l / 2, cy);
86 SkScalar cx = slideWidth / 2 + slideBoundary local
    [all...]
  /external/skia/samplecode/
SampleBlur.cpp 32 const float cx = bm.width() * 0.5f; local
39 float dx = x - cx;
41 float d = (dx + dy) / (cx/2);
SampleOvalTest.cpp 55 SkScalar cx = SkScalarHalf(fSize.width()); local
64 SkScalar dist = SkPoint::Length(px - cx, py - cy);
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 30 int cx = clip.fLeft; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
59 int left_edge = cx - maskLeft;
  /external/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 22 int cx = state.fC & 0x03; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
80 int cx = c & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
PathOpsSimplifyQuadThreadedTest.cpp 23 int cx = state.fC & 0x03; local
43 SkIntToScalar(cx), SkIntToScalar(cy));
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);

Completed in 1286 milliseconds

12 3 4 5 6 7 8 91011