HomeSort by relevance Sort by last modified time
    Searched defs:ry (Results 1 - 25 of 50) 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/legacy/src/animator/
SkDrawRectangle.h 50 SkScalar ry; member in class:SkRoundRect
SkPathParts.h 150 SkScalar ry; member in class:SkAddRoundRect
  /external/skia/src/animator/
SkDrawRectangle.h 50 SkScalar ry; member in class:SkRoundRect
SkPathParts.h 150 SkScalar ry; member in class:SkAddRoundRect
  /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/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 ) );
cvcalibration.cpp 531 double rx, ry, rz, theta; local
543 ry = src->data.fl[step];
549 ry = src->data.db[step];
552 theta = sqrt(rx*rx + ry*ry + rz*rz);
574 rx *= itheta; ry *= itheta; rz *= itheta;
576 double rrt[] = { rx*rx, rx*ry, rx*rz, rx*ry, ry*ry, ry*rz, rx*rz, ry*rz, rz*rz }
610 double R[9], U[9], V[9], W[3], rx, ry, rz; local
    [all...]
cvsubdivision2d.cpp 524 float ry = (float) rect.y; local
540 subdiv->topleft = cvPoint2D32f( rx, ry );
541 subdiv->bottomright = cvPoint2D32f( rx + rect.width, ry + rect.height );
543 ppA = cvPoint2D32f( rx + big_coord, ry );
544 ppB = cvPoint2D32f( rx, ry + big_coord );
545 ppC = cvPoint2D32f( rx - big_coord, ry - big_coord );
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggievents.c 64 int x = 0, y = 0, z = 0, rx = 0, ry = 0, rz = 0; local
  /external/webkit/Source/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 109 CGPoint ry = CGPointMake(-height * sina, height * cosa); local
113 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorDistnoise.java 131 float ry = abstractNoiseFunc1.execute(x, y, z) * distortion; local
133 return abstractNoiseFunc2.executeSigned(x + rx, y + ry, z + rz); //distorted-domain noise
  /external/skia/src/gpu/
GrAARectRenderer.cpp 183 const SkScalar ry = SkScalarMul(dy, SK_ScalarHalf); local
194 r.inset(-rx, -ry);
223 -rx - SK_ScalarHalf, -ry - SK_ScalarHalf);
225 -rx + SK_ScalarHalf, -ry + SK_ScalarHalf);
227 rx - SK_ScalarHalf, ry - SK_ScalarHalf);
229 rx + SK_ScalarHalf, ry + SK_ScalarHalf);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterVignette.java 83 float ry = r; local
93 ry = m.mapRadius(rep.getRadiusY());
95 nativeApplyFilter(bitmap, w, h, (int) cx, (int) cy, rx, ry, value);
  /external/webkit/Source/WebCore/svg/
SVGPathParser.cpp 241 float ry; local
246 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
249 // If rx = 0 or ry = 0 then this arc is treated as a straight line segment (a "lineto") joining the endpoints.
252 ry = fabsf(ry);
253 if (!rx || !ry) {
270 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
404 bool SVGPathParser::decomposeArcToCubic(float angle, float rx, float ry, FloatPoint& point1, FloatPoint& point2, bool largeArcFlag, bool sweepFlag)
414 float squareRy = ry * ry
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageVignette.java 114 float ry = rx; local
116 mVignetteRep.setRadius(rx, ry);
EclipseControl.java 168 float ry = oval.getRadiusY(); local
169 float r = (Math.abs(rx) + Math.abs(ry)) * sin45;
173 oval.setRadius(rx * nr / r, ry * nr / r);
213 void paintRadius(Canvas canvas, float cx, float cy, float rx, float ry) {
219 RectF rect = new RectF(cx - rx, cy - ry, cx + rx, cy + ry);
224 paintOvallines(canvas, rect, paint, cx, cy, rx, ry);
228 paintOvallines(canvas, rect, paint, cx, cy, rx, ry);
232 Canvas canvas, RectF rect, Paint paint, float cx, float cy, float rx, float ry) {
241 float dy = ry + 10
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
FaultHeightMap.java 203 float ry = y + dy / dmag * radius; local
205 * FastMath.sqrt(FastMath.sqr(i - rx) + FastMath.sqr(j - ry));
  /external/skia/legacy/src/effects/
SkBlurMask.cpp 108 static void kernel_clamped(uint8_t dst[], int rx, int ry, const uint32_t sum[],
112 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1));
117 int dh = sh + 2*ry;
119 int prev_y = -2*ry;
169 static void apply_kernel(uint8_t dst[], int rx, int ry, const uint32_t sum[],
172 kernel_clamped(dst, rx, ry, sum, sw, sh);
176 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1));
181 int dh = sh + 2*ry;
183 int prev_y = -2*ry;
268 static void kernel_interp_clamped(uint8_t dst[], int rx, int ry,
578 int ry = rx; \/\/ only do square blur for now local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 164 final float ry = (h * (GLOW_MAX_SCALE_FACTOR - 1.0f)) / 2.0f + 1.0f; local
168 getTop() - ry,
170 getBottom() + ry));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 603 int ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1); local
604 graphics.drawLine(x2, y2, rx, ry);
608 ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1);
609 graphics.drawLine(x2, y2, rx, ry);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
SkeletonControl.java 351 float rx = 0, ry = 0, rz = 0, rnx = 0, rny = 0, rnz = 0; local
358 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight;
372 posBuf[idxPositions++] = ry;
473 float rx = 0, ry = 0, rz = 0, rnx = 0, rny = 0, rnz = 0, rtx = 0, rty = 0, rtz = 0; local
480 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight;
499 posBuf[idxPositions++] = ry;
  /external/qemu/android/skin/
trackball.c 322 double ry = y0/radius; local
323 double rz = sqrt( 1.0 - rx*rx - ry*ry );
330 coord->f[1] = FIX16_FROM_FLOAT(ry);
342 double ly = LIGHT_Y - ry;
345 double cosphi = lir*(lx*rx + ly*ry + lz*rz);
  /external/skia/bench/
PathBench.cpp 715 SkScalar ry = SkMinScalar(rect.height(), yIn); local
718 arcRect.set(-rx, -ry, rx, ry);

Completed in 637 milliseconds

1 2