/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_texture.c | 48 float rx, ry, rz; local 63 ry = -tc; 68 ry = -tc; 73 ry = 1; 78 ry = -1; 83 ry = -tc; 88 ry = -tc; 92 rx = ry = rz = 0; 97 out_str[1] = ry; /*t*/
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_texture.c | 48 float rx, ry, rz; local 63 ry = -tc; 68 ry = -tc; 73 ry = 1; 78 ry = -1; 83 ry = -tc; 88 ry = -tc; 92 rx = ry = rz = 0; 97 out_str[1] = ry; /*t*/
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGEllipseElement.idl | 30 readonly attribute SVGAnimatedLength ry;
|
SVGRectElement.idl | 33 readonly attribute SVGAnimatedLength ry;
|
SVGEllipseElement.h | 55 DECLARE_ANIMATED_LENGTH(Ry, ry)
|
SVGPathByteStreamSource.cpp | 101 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) 104 ry = readFloat();
|
SVGPathParser.cpp | 240 float ry; local 245 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint)) 248 // If rx = 0 or ry = 0 then this arc is treated as a straight line segment (a "lineto") joining the endpoints. 253 ry = fabsf(ry); 261 if (!rx || !ry || arcIsZeroLength) { 278 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep); 280 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode); 412 bool SVGPathParser::decomposeArcToCubic(float angle, float rx, float ry, FloatPoint& point1, FloatPoint& point2, bool largeArcFlag, bool sweepFlag) 422 float squareRy = ry * ry [all...] |
SVGRectElement.h | 57 DECLARE_ANIMATED_LENGTH(Ry, ry)
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGEllipse.cpp | 19 SVG_ATTRIBUTE(ry) 27 SkScalar cx, cy, rx, ry; local 31 SkParse::FindScalar(f_ry.c_str(), &ry); 34 top = cy - ry; 36 bottom = cy + ry;
|
/external/skia/src/svg/ |
SkSVGEllipse.cpp | 19 SVG_ATTRIBUTE(ry) 27 SkScalar cx, cy, rx, ry; local 31 SkParse::FindScalar(f_ry.c_str(), &ry); 34 top = cy - ry; 36 bottom = cy + ry;
|
/external/chromium_org/ppapi/cpp/ |
rect.cc | 54 int32_t ry = std::max(y(), rect.y()); local 58 if (rx >= rr || ry >= rb) 59 rx = ry = rr = rb = 0; // non-intersecting 61 return Rect(rx, ry, rr - rx, rb - ry); 72 int32_t ry = std::min(y(), rect.y()); local 76 return Rect(rx, ry, rr - rx, rb - ry); 87 int32_t ry = y(); local 101 ry = rect.bottom() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
RectangleShape.cpp | 37 static inline float ellipseXIntercept(float y, float rx, float ry) 39 ASSERT(ry > 0); 40 return rx * sqrt(1 - (y * y) / (ry * ry)); 43 static inline float ellipseYIntercept(float x, float rx, float ry) 46 return ry * sqrt(1 - (x * x) / (rx * rx)); 92 float marginRadiusY = ry() + shapeMargin(); 127 float paddingRadiusY = std::max(0.0f, ry() - shapePadding()); 159 static FloatPoint cornerInterceptForWidth(float width, float widthAtIntercept, float rx, float ry) 162 float yi = ry - ellipseYIntercept(rx - xi, rx, ry) [all...] |
RectangleShape.h | 63 float ry() const { return m_radii.height(); } function in class:WebCore::RectangleShape
|
/external/chromium_org/ui/gfx/ |
rect_f.cc | 54 float ry = std::min(p1.y(), p2.y()); local 57 return RectF(rx, ry, rr - rx, rb - ry);
|
rect_base_impl.h | 173 Type ry = std::max(y(), rect.y()); local 177 if (rx >= rr || ry >= rb) 178 rx = ry = rr = rb = 0; // non-intersecting 180 SetRect(rx, ry, rr - rx, rb - ry); 199 Type ry = std::min(y(), rect.y()); local 203 SetRect(rx, ry, rr - rx, rb - ry); 222 Type ry = y(); local 236 ry = rect.bottom() [all...] |
/external/opencv/cv/src/ |
cvcalcimagehomography.cpp | 61 CvMat ry = cvMat( 1, 3, CV_32F, _ry ); local 93 cvCrossProduct( &rz, &rx, &ry ); 94 cvScale( &ry, &ry, 1./cvNorm( &ry, 0, CV_L2 ) );
|
/external/pixman/pixman/ |
pixman-conical-gradient.c | 71 double ry = y + 0.5; local 93 ry = v.vector[1] / 65536.; 104 ry -= conical->center.y / 65536.; 110 double t = coordinates_to_parameter (rx, ry, conical->angle); 119 ry += cy; 135 y = ry / rz; 154 ry += cy;
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawRectangle.cpp | 119 SK_MEMBER(ry, Float), 126 SkRoundRect::SkRoundRect() : rx(0), ry(0) { 131 maker.fCanvas->drawRoundRect(fRect, rx, ry, *maker.fPaint); 138 SkDebugf("left=\"%g\" top=\"%g\" right=\"%g\" bottom=\"%g\" rx=\"%g\" ry=\"%g\" />\n", 140 SkScalarToFloat(fRect.fBottom), SkScalarToFloat(rx), SkScalarToFloat(ry));
|
SkDrawRectangle.h | 50 SkScalar ry; member in class:SkRoundRect
|
/external/skia/src/animator/ |
SkDrawRectangle.cpp | 119 SK_MEMBER(ry, Float), 126 SkRoundRect::SkRoundRect() : rx(0), ry(0) { 131 maker.fCanvas->drawRoundRect(fRect, rx, ry, *maker.fPaint); 138 SkDebugf("left=\"%g\" top=\"%g\" right=\"%g\" bottom=\"%g\" rx=\"%g\" ry=\"%g\" />\n", 140 SkScalarToFloat(fRect.fBottom), SkScalarToFloat(rx), SkScalarToFloat(ry));
|
SkDrawRectangle.h | 50 SkScalar ry; member in class:SkRoundRect
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
EclipseControl.java | 180 float ry = oval.getRadiusY(); local 181 float r = (Math.abs(rx) + Math.abs(ry)) * sin45; 185 oval.setRadius((rx * nr / r), (ry * nr / r)); 225 void paintRadius(Canvas canvas, float cx, float cy, float rx, float ry) { 231 RectF rect = new RectF(cx - rx, cy - ry, cx + rx, cy + ry); 236 paintOvallines(canvas, rect, paint, cx, cy, rx, ry); 240 paintOvallines(canvas, rect, paint, cx, cy, rx, ry); 244 Canvas canvas, RectF rect, Paint paint, float cx, float cy, float rx, float ry) { 253 float dy = ry + 10 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGPathData.cpp | 55 float ry = ellipse->ryCurrentValue().value(lengthContext); local 56 if (ry <= 0) 58 path.addEllipse(FloatRect(ellipse->cxCurrentValue().value(lengthContext) - rx, ellipse->cyCurrentValue().value(lengthContext) - ry, rx * 2, ry * 2)); 120 float ry = rect->ryCurrentValue().value(lengthContext); local 122 rx = ry; 124 ry = rx; 126 path.addRoundedRect(FloatRect(x, y, width, height), FloatSize(rx, ry));
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkOpAngle.cpp | 36 bool SkOpAngle::calcSlop(double x, double y, double rx, double ry, bool* result) const{ 51 double x_ry1 = x1 * ry; 56 double x_ry2 = x2 * ry; 73 double ry = rh.dy(); 81 double y_ry = y * ry; 83 return COMPARE_RESULT("1 y * ry < 0", y < 0); 89 if (y < 0 && ry < 0) { // if y's are negative, lh x is smaller if positive 92 if (y >= 0 && ry >= 0) { // if y's are zero or positive, lh x is smaller if negative 95 SkASSERT((y == 0) ^ (ry == 0)); // if one y is zero and one is negative, neg y is smaller 100 if (y + ry < 0) { // if the other y is less than zero, it must be smalle [all...] |
/external/skia/src/pathops/ |
SkOpAngle.cpp | 36 bool SkOpAngle::calcSlop(double x, double y, double rx, double ry, bool* result) const{ 51 double x_ry1 = x1 * ry; 56 double x_ry2 = x2 * ry; 73 double ry = rh.dy(); 81 double y_ry = y * ry; 83 return COMPARE_RESULT("1 y * ry < 0", y < 0); 89 if (y < 0 && ry < 0) { // if y's are negative, lh x is smaller if positive 92 if (y >= 0 && ry >= 0) { // if y's are zero or positive, lh x is smaller if negative 95 SkASSERT((y == 0) ^ (ry == 0)); // if one y is zero and one is negative, neg y is smaller 100 if (y + ry < 0) { // if the other y is less than zero, it must be smalle [all...] |