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

1 2 3 4 5 6 7

  /external/libvncserver/libvncclient/
zlib.c 36 HandleZlibBPP (rfbClient* client, int rx, int ry, int rw, int rh)
145 CopyRectangle(client, (uint8_t *)client->raw_buffer, rx, ry, rw, rh); local
ultra.c 35 HandleUltraBPP (rfbClient* client, int rx, int ry, int rw, int rh)
101 CopyRectangle(client, (unsigned char *)client->raw_buffer, rx, ry, rw, rh); local
115 HandleUltraZipBPP (rfbClient* client, int rx, int ry, int rw, int rh)
122 lzo_uint uncompressedBytes = ry + (rw * 65535);
134 rfbClientLog("ultrazip error: rectangle has 0 uncomressed bytes (%dy + (%dw * 65535)) (%d rectangles)\n", ry, rw, rx);
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 49 float rx, ry, rz; local
70 ry = -tc;
75 ry = -tc;
80 ry = 1;
85 ry = -1;
90 ry = -tc;
95 ry = -tc;
99 rx = ry = rz = 0;
104 out_str[1] = ry; /*t*/
  /external/skia/experimental/svg/model/
SkSVGEllipse.cpp 27 void SkSVGEllipse::setRy(const SkSVGLength& ry) {
28 fRy = ry;
49 if (const auto* ry = v.as<SkSVGLengthValue>()) {
50 this->setRy(*ry);
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); local
64 return (rx > 0 && ry > 0)
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2)
SkSVGRect.cpp 36 void SkSVGRect::setRy(const SkSVGLength& ry) {
37 fRy = ry;
68 if (const auto* ry = v.as<SkSVGLengthValue>()) {
69 this->setRy(*ry);
80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); local
82 return SkRRect::MakeRectXY(rect, rx ,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/skia/src/gpu/effects/
GrEllipseEffect.cpp 120 SkScalar ry = testData->fRandom->nextRangeF(0.f, 1000.f); local
125 return GrEllipseEffect::Make(et, center, SkPoint::Make(rx, ry));
  /external/skia/gm/
addarc.cpp 96 SkScalar ry = SkScalarSin(rad) * R; variable
98 canvas->drawLine(0, 0, rx, ry, paint);
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
325 ry = asin(B);
327 ry = atan2(new_y, sqrt_A2my2);
328 return (CMPLX(copysign(rx, x), copysign(ry, y)));
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
392 ry = creal(w) + m_ln2;
394 ry = -ry;
395 return (CMPLX(rx, ry));
408 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
433 double rx, ry; local
569 double x, y, ax, ay, rx, ry; local
    [all...]
catrigf.c 148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
186 ry = asinf(B);
188 ry = atan2f(new_y, sqrt_A2my2);
189 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
228 ry = crealf(w) + m_ln2;
230 ry = -ry;
231 return (CMPLXF(rx, ry));
242 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
263 float rx, ry; local
341 float x, y, ax, ay, rx, ry; local
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
mct.c 220 const __m128i ry = _mm_set1_epi32(2449); local
240 lo = _mm_mul_epi32(lo, ry);
241 hi = _mm_mul_epi32(hi, ry);
  /external/pdfium/xfa/fde/
cfde_path.cpp 42 FX_FLOAT ry = rect.height / 2; local
44 FX_FLOAT cy = rect.top + ry;
46 FXSYS_atan2(rx * FXSYS_sin(startAngle), ry * FXSYS_cos(startAngle));
48 FXSYS_atan2(rx * FXSYS_sin(endAngle), ry * FXSYS_cos(endAngle));
63 MoveTo(CFX_PointF(cx + rx * cos_alpha, cy + ry * sin_alpha));
66 cy + ry * (sin_alpha + bcp * cos_alpha)),
68 cy + ry * (sin_beta - bcp * cos_beta)),
69 CFX_PointF(cx + rx * cos_beta, cy + ry * sin_beta));
  /frameworks/base/libs/hwui/
TessellationCache.h 72 float ry; member in struct:android::uirenderer::TessellationCache::Description::Shape::RoundRect
157 float width, float height, float rx, float ry) {
158 getRoundRectBuffer(transform, paint, width, height, rx, ry);
161 float width, float height, float rx, float ry);
183 float width, float height, float rx, float ry);
TessellationCache.cpp 74 return lRect.ry == rRect.ry;
426 float ry = description.shape.roundRect.ry; local
431 ry += outset;
434 path.addRoundRect(rect, rx, ry);
440 float width, float height, float rx, float ry) {
445 entry.shape.roundRect.ry = ry;
449 float width, float height, float rx, float ry) {
    [all...]
RecordedOp.h 324 RoundRectOp(BASE_PARAMS, float rx, float ry)
327 , ry(ry) {}
329 const float ry; member in struct:android::uirenderer::RoundRectOp
334 float* left, float* top, float* right, float* bottom, float *rx, float *ry)
341 , ry(ry) {}
347 const float* ry; member in struct:android::uirenderer::RoundRectPropsOp
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterVignette.java 95 float ry = r; local
110 ry = c[1];
123 mScript.set_radiusy(ry);
  /external/ImageMagick/MagickCore/
geometry.h 96 ry, member in struct:_AffineMatrix
  /external/skia/src/gpu/ops/
GrAAStrokeRectOp.cpp 62 const SkScalar ry = SkScalarHalf(dy); local
68 devOutside->outset(rx, ry);
69 devInside->inset(rx, ry);
91 devOutside->inset(0, ry);
92 devOutsideAssist->outset(0, ry);
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorTests.cpp 383 const float ry = 2.0f * renderArea.w(); local
392 const float y = y0 + rng.getFloat(0.0f, ry);
401 const float y = y0 + rng.getFloat(0.0f, ry - size);
411 const float y = y0 + rng.getFloat(0.0f, ry - size);
420 vertices.push_back(makeVertex(x0 + rx, y0 + ry, primitiveColor));
425 vertices.push_back(makeVertex(x0 + rx/2.0f, y0 + ry, primitiveColor));
    [all...]
  /external/deqp/modules/gles31/functional/
es31fStencilTexturingTests.cpp 100 const int ry = rects[rectNdx].y(); local
106 const float y0 = float(ry*2)/h - 1.0f;
107 const float y1 = float((ry+rh)*2)/h - 1.0f;
    [all...]
  /external/mesa3d/src/mesa/main/
rastpos.c 272 GLfloat u[3], two_nu, rx, ry, rz, m, mInv; local
277 ry = u[1] - normal[1] * two_nu;
279 m = rx * rx + ry * ry + (rz + 1.0F) * (rz + 1.0F);
317 texcoord[1] = ry * mInv + 0.5F;
320 texcoord[1] = ry;
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 393 register int rx, ry; local
409 ry = FIXED_REST_TO_INT(fy);
428 dxy = LERP(ry, dx0, dx1);
524 register int rx, ry, rz; local
541 ry = FIXED_REST_TO_INT(fy);
575 dxy0 = LERP(ry, dx00, dx10);
576 dxy1 = LERP(ry, dx01, dx11);
600 cmsFloat32Number rx, ry, rz; local
612 y0 = (int) _cmsQuickFloor(py); ry = (py - (cmsFloat32Number) y0);
631 if (rx >= ry && ry >= rz)
699 cmsS15Fixed16Number rx, ry, rz; local
836 cmsS15Fixed16Number rx, ry, rz; local
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 526 int ry = rx; // only do square blur for now local
529 int pady = passCount * ry;
571 h = boxBlur<true>(tp, h, dp, ry, ry, h, w);
580 h = boxBlurInterp<false>(tp, h, dp, ry, h, w, outerWeight);
581 h = boxBlurInterp<false>(dp, h, tp, ry, h, w, outerWeight);
582 h = boxBlurInterp<true>(tp, h, dp, ry, h, w, outerWeight);
585 h = boxBlurInterp<true>(tp, h, dp, ry, h, w, outerWeight);
    [all...]

Completed in 801 milliseconds

1 2 3 4 5 6 7