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

1 2

  /external/quake/quake/src/QW/client/
d_fill.c 32 int rx, ry, rwidth, rheight; local
37 ry = rect->y;
46 if (ry < 0)
48 rheight += ry;
49 ry = 0;
53 if (ry+rheight > vid.height)
59 dest = ((byte *)vid.buffer + ry*vid.rowbytes + rx);
70 for (ry=0 ; ry<rheight ; ry++
    [all...]
  /external/quake/quake/src/WinQuake/
d_fill.cpp 32 int rx, ry, rwidth, rheight; local
37 ry = rect->y;
46 if (ry < 0)
48 rheight += ry;
49 ry = 0;
53 if (ry+rheight > vid.height)
59 dest = ((byte *)vid.buffer + ry*vid.rowbytes + rx);
70 for (ry=0 ; ry<rheight ; ry++)
    [all...]
  /external/skia/src/svg/
SkSVGEllipse.cpp 27 SVG_ATTRIBUTE(ry)
35 SkScalar cx, cy, rx, ry; local
39 SkParse::FindScalar(f_ry.c_str(), &ry);
42 top = cy - ry;
44 bottom = cy + ry;
  /external/webkit/WebCore/svg/
SVGEllipseElement.idl 37 readonly attribute SVGAnimatedLength ry;
SVGRectElement.idl 40 readonly attribute SVGAnimatedLength ry;
SVGEllipseElement.h 55 DECLARE_ANIMATED_PROPERTY(SVGEllipseElement, SVGNames::ryAttr, SVGLength, Ry, ry)
SVGRectElement.h 57 DECLARE_ANIMATED_PROPERTY(SVGRectElement, SVGNames::ryAttr, SVGLength, Ry, ry)
SVGRectElement.cpp 64 document()->accessSVGExtensions()->reportError("A negative value for rect <ry> is not allowed");
139 float _rx = hasRx ? rx().value(this) : ry().value(this);
140 float _ry = hasRy ? ry().value(this) : rx().value(this);
151 rx().isRelative() || ry().isRelative());
SVGEllipseElement.cpp 63 document()->accessSVGExtensions()->reportError("A negative value for ellipse <ry> is not allowed");
119 rx().value(this), ry().value(this));
125 rx().isRelative() || ry().isRelative());
  /external/skia/src/effects/
SkBlurMask.cpp 92 static void apply_kernel(uint8_t dst[], int rx, int ry, const uint32_t sum[],
94 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1));
99 int dh = sh + 2*ry;
101 int prev_y = -2*ry;
131 static void apply_kernel_interp(uint8_t dst[], int rx, int ry,
133 SkASSERT(rx > 0 && ry > 0);
142 uint32_t outer_scale = (outer_weight << 16) / ((2*rx + 1)*(2*ry + 1));
143 uint32_t inner_scale = (inner_weight << 16) / ((2*rx - 1)*(2*ry - 1));
148 int dh = sh + 2*ry;
150 int prev_y = -2*ry;
263 int ry = rx; \/\/ only do square blur for now local
    [all...]
  /external/chromium/base/gfx/
rect.cc 159 int ry = std::max(y(), rect.y()); local
163 if (rx >= rr || ry >= rb)
164 rx = ry = rr = rb = 0; // non-intersecting
166 return Rect(rx, ry, rr - rx, rb - ry);
177 int ry = std::min(y(), rect.y()); local
181 return Rect(rx, ry, rr - rx, rb - ry);
192 int ry = y(); local
206 ry = rect.bottom()
    [all...]
  /external/skia/src/animator/
SkDrawRectangle.cpp 127 SK_MEMBER(ry, Float),
134 SkRoundRect::SkRoundRect() : rx(0), ry(0) {
139 maker.fCanvas->drawRoundRect(fRect, rx, ry, *maker.fPaint);
146 SkDebugf("left=\"%g\" top=\"%g\" right=\"%g\" bottom=\"%g\" rx=\"%g\" ry=\"%g\" />\n",
148 SkScalarToFloat(fRect.fBottom), SkScalarToFloat(rx), SkScalarToFloat(ry));
SkDrawRectangle.h 58 SkScalar ry; member in class:SkRoundRect
SkPathParts.h 158 SkScalar ry; member in class:SkAddRoundRect
SkPathParts.cpp 289 SK_MEMBER(ry, Float)
296 SkAddRoundRect::SkAddRoundRect() : rx(0), ry(0) {
300 fPath->fPath.addRoundRect(fRect, rx, ry, (SkPath::Direction) direction);
  /external/skia/src/core/
SkPath.cpp 372 void SkPath::addRoundRect(const SkRect& rect, SkScalar rx, SkScalar ry,
386 bool skip_vert = ry >= halfH;
395 ry = halfH;
399 SkScalar sy = SkScalarMul(ry, CUBIC_ARC_FACTOR);
408 rect.fLeft, rect.fTop + ry - sy,
409 rect.fLeft, rect.fTop + ry); // top-left
411 this->lineTo(rect.fLeft, rect.fBottom - ry); // left
413 this->cubicTo(rect.fLeft, rect.fBottom - ry + sy,
420 rect.fRight, rect.fBottom - ry + sy,
421 rect.fRight, rect.fBottom - ry); // bot-righ
512 SkScalar ry = SkScalarHalf(oval.height()); local
    [all...]
  /external/skia/include/core/
SkStroke.h 57 void strokeRRect(const SkRect& rect, SkScalar rx, SkScalar ry, SkPath*) const;
  /external/webkit/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 102 CGPoint ry = CGPointMake(-height * sina, height * cosa); local
106 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
  /external/webkit/WebCore/platform/graphics/
Path.cpp 119 float ry = roundingRadii.height(); local
123 float dx = rx, dy = ry;
129 // If ry is greater than half of the height of the rectangle
130 // then set ry to half of the height (required in SVG spec)
222 Path Path::createEllipse(const FloatPoint& center, float rx, float ry)
227 if (rx <= 0.0f || ry <= 0.0f)
245 y = cy + sinf(angle) * ry;
Path.h 143 static Path createEllipse(const FloatPoint& center, float rx, float ry);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteComposite.java 169 int ry = mRoot.getSize().y; local
182 ry = ci.getLocation().y + cj.getLocation().y + cj.getSize().y;
193 int y = ry > vy ? ry - vy + 2 : 0;
195 float ft = ry > 0 ? (float)vy / ry : 1;
  /frameworks/base/opengl/libagl/
matrix.cpp 727 const GLfixed ry = rhs->y; local
728 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]);
729 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]);
730 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]);
731 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]);
737 const GLfixed ry = rhs->y; local
739 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]);
740 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]);
741 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]);
742 lhs->w = mla3a(rx, m[ 3], ry, m[ 7], rz, m[11], m[15])
748 const GLfixed ry = rhs->y; local
763 const GLfixed ry = rhs->y; local
777 const GLfixed ry = rhs->y; local
    [all...]
  /external/qemu/android/skin/
trackball.c 321 double ry = y0/radius; local
322 double rz = sqrt( 1.0 - rx*rx - ry*ry );
329 coord->f[1] = FIX16_FROM_FLOAT(ry);
341 double ly = LIGHT_Y - ry;
344 double cosphi = lir*(lx*rx + ly*ry + lz*rz);
  /frameworks/base/graphics/java/android/graphics/
Path.java 415 * @param ry The y-radius of the rounded corners on the round-rectangle
418 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) {
422 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt);
580 float rx, float ry, int dir);
  /frameworks/base/media/libstagefright/codecs/aacdec/
fxp_mul32_arm_gcc.h 195 register Int32 ry = (Int32)y; local
202 "r"(ry),

Completed in 1070 milliseconds

1 2