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

1 2 3 4 5 6 7 8 9

  /external/v8/test/webkit/fast/js/
regexp-unicode-handling.js 39 function cy(a) { function
56 shouldBe("cy('Re: Moose')", "'Moose'")
57 shouldBe("cy('\\u8f6c\\u53d1: Moose')", "'Moose'")
  /external/v8/test/webkit/
gmail-re-re.js 36 function cy(a) { function
53 shouldBe('cy("Re: Hello")', '"Hello"');
54 shouldBe('cy("?????: Hello")', '"Hello"');
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
40 cy+= *X++;
46 c[1]=cy*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
62 cy+=temp[1];
68 c[1]=cy*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /external/skia/src/svg/parser/
SkSVGCircle.cpp 17 SVG_ATTRIBUTE(cy),
26 SkScalar cx, cy, r; local
28 SkParse::FindScalar(f_cy.c_str(), &cy);
32 top = cy - r;
34 bottom = cy + r;
SkSVGEllipse.cpp 17 SVG_ATTRIBUTE(cy),
27 SkScalar cx, cy, rx, ry; local
29 SkParse::FindScalar(f_cy.c_str(), &cy);
34 top = cy - ry;
36 bottom = cy + ry;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
40 cy+= *X++;
46 c[1]=cy*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
62 cy+=temp[1];
68 c[1]=cy*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /external/opencv3/modules/calib3d/src/
p3p.h 10 p3p(double fx, double fy, double cx, double cy);
29 cy = cameraMatrix.at<T> (1, 2);
41 points[i*5+1] = ipoints.at<IpointType>(i).y*fy + cy;
57 double fx, fy, cx, cy; member in class:p3p
  /external/opencv3/samples/cpp/
dft.cpp 60 int cy = mag.rows/2; local
65 Mat q0(mag, Rect(0, 0, cx, cy));
66 Mat q1(mag, Rect(cx, 0, cx, cy));
67 Mat q2(mag, Rect(0, cy, cx, cy));
68 Mat q3(mag, Rect(cx, cy, cx, cy));
  /external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
discrete_fourier_transform.cpp 55 int cy = magI.rows/2; local
57 Mat q0(magI, Rect(0, 0, cx, cy)); // Top-Left - Create a ROI per quadrant
58 Mat q1(magI, Rect(cx, 0, cx, cy)); // Top-Right
59 Mat q2(magI, Rect(0, cy, cx, cy)); // Bottom-Left
60 Mat q3(magI, Rect(cx, cy, cx, cy)); // Bottom-Right
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 40 VGfloat cx, cy; member in struct:arc
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 60 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 + cw < 0) mask |= CLIP_TOP_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/tests/
InfRectTest.cpp 43 int cy = r.centerY(); local
45 REPORTER_ASSERT(reporter, ((r.top() + r.bottom()) >> 1) == cy);
PathOpsSimplifyTrianglesThreadedTest.cpp 24 int cy = state.fC >> 2; local
44 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
54 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
89 int cy = c >> 2; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
PathOpsSimplifyDegenerateThreadedTest.cpp 23 int cy = state.fC >> 2; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
81 int cy = c >> 2; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
PathOpsSimplifyQuadThreadedTest.cpp 24 int cy = state.fC >> 2; local
43 SkIntToScalar(cx), SkIntToScalar(cy));
58 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 24 int cy = state.fC >> 2; local
43 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
56 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
  /external/opencv3/modules/videostab/src/
outlier_rejection.cpp 87 int cx, cy; local
96 cy = std::min(cvRound(points0_[i].y / cellSize_.height), ncells.height - 1);
97 grid_[cy * ncells.width + cx].push_back(i);
  /external/skia/gm/
downsamplebitmap.cpp 23 int cy = (y * numChecks) / size; local
24 if ((cx+cy)%2) {
filterbitmap.cpp 51 SkScalar cy = SkScalarHalf(fBM.height()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
163 int cy = (y * fNumChecks) / fSize; variable
164 if ((cx+cy)%2) {
filterindiabox.cpp 50 SkScalar cy = SkScalarHalf(fBM.height()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
inversepaths.cpp 12 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
13 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
19 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) {
20 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
26 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
28 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
32 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
34 path.moveTo(cx - l / 2, cy);
35 path.lineTo(cx + l / 2, cy);
68 SkScalar cy = slideHeight / 2 + slideBoundary local
    [all...]
  /external/skia/samplecode/
SampleBlur.cpp 33 const float cy = bm.height() * 0.5f; local
35 float dy = y - cy;
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 31 int cy = clip.fTop; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = dst.SK_BLITBWMASK_GETADDR(cx, cy);
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 61 int cy = mBitmap.getHeight() / 2; local
62 matrix.preTranslate(-cx, -cy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPoint.java 113 int cy = mCanvas.getVerticalTransform().translate(y); local
115 return ControlPoint.create(mCanvas, cx, cy);

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 9