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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Camera/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...]
  /packages/apps/Camera2/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...]
  /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/chromium_org/third_party/WebKit/Source/core/svg/
SVGCircleElement.idl 29 readonly attribute SVGAnimatedLength cy;
SVGEllipseElement.idl 28 readonly attribute SVGAnimatedLength cy;
SVGRadialGradientElement.idl 28 readonly attribute SVGAnimatedLength cy;
SVGTransformDistance.h 43 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&);
SVGTransform.cpp 99 void SVGTransform::setRotate(float angle, float cx, float cy)
103 m_center = FloatPoint(cx, cy);
105 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
107 m_matrix.translate(cx, cy);
109 m_matrix.translate(-cx, -cy);
186 float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0); local
187 if (cx || cy)
188 return prefix + String::number(m_angle) + ' ' + String::number(cx) + ' ' + String::number(cy) + ')';
SVGCircleElement.h 52 DECLARE_ANIMATED_LENGTH(Cy, cy)
SVGEllipseElement.h 52 DECLARE_ANIMATED_LENGTH(Cy, cy)
SVGRadialGradientElement.h 50 DECLARE_ANIMATED_LENGTH(Cy, cy)
  /frameworks/base/graphics/java/android/graphics/
SweepGradient.java 41 * @param cy The y-coordinate of the center
51 public SweepGradient(float cx, float cy,
62 mCy = cy;
65 native_instance = nativeCreate1(cx, cy, colors, positions);
66 native_shader = nativePostCreate1(native_instance, cx, cy, colors, positions);
73 * @param cy The y-coordinate of the center
77 public SweepGradient(float cx, float cy, int color0, int color1) {
80 mCy = cy;
83 native_instance = nativeCreate2(cx, cy, color0, color1);
84 native_shader = nativePostCreate2(native_instance, cx, cy, color0, color1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
UnitBezier.h 42 cy = 3.0 * p1y;
43 by = 3.0 * (p2y - p1y) - cy;
44 ay = 1.0 - cy - by;
55 return ((ay * t + by) * t + cy) * t;
125 double cy; member in struct:WebCore::UnitBezier
  /external/chromium_org/third_party/skia/src/svg/
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;
  /external/skia/src/svg/
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;
  /external/skia/gm/
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);
83 SkScalar cy = slideHeight / 2 + slideBoundary local
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 108 float cy = d.centerY() * p + s.centerY() * (1 - p); local
115 mTarget.set(cx - ch / 2, cy - ch / 2, cx + ch / 2, cy + ch / 2);
123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2);
128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2);
135 mTarget.set(cx - cw / 2, cy - cw / 2, cx + cw / 2, cy + cw / 2);
143 mTarget.set(cx - cw / 2, cy - ch / 2, cx + cw / 2, cy - cw / 2)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterVignette.java 61 Bitmap bitmap, int w, int h, int cx, int cy, float radx, float rady,
64 private float calcRadius(float cx, float cy, int w, int h) {
69 if (d < cy) {
70 d = cy;
72 if (d < (h - cy)) {
73 d = h - cy;
92 float cy = h / 2; local
93 float r = calcRadius(cx, cy, w, h);
105 cy = c[1];
121 mScript.set_centery(cy);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.h 49 int x, int y, int cx, int cy);
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window.h 49 int x, int y, int cx, int cy);
  /external/chromium_org/ui/gfx/
size.cc 33 s.cy = height();

Completed in 401 milliseconds

1 2 3 4 5 6 7 8 91011>>