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

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrt.c 45 double a, b, rx, ry, scale, t; local
103 ry = scale * b / (2 * t);
107 ry = copysign(scale * t, b);
110 return (CMPLX(rx, ry));
s_csqrtl.c 60 long double a, b, rx, ry, scale, t; local
118 ry = scale * b / (2 * t);
122 ry = copysignl(scale * t, b);
125 return (CMPLXL(rx, ry));
catrig.c 279 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
327 ry = asin(B);
329 ry = atan2(new_y, sqrt_A2my2);
330 return (CMPLX(copysign(rx, x), copysign(ry, y)));
360 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
394 ry = creal(w) + m_ln2;
396 ry = -ry;
397 return (CMPLX(rx, ry));
410 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
435 double rx, ry; local
576 double x, y, ax, ay, rx, ry; local
    [all...]
catrigf.c 150 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
188 ry = asinf(B);
190 ry = atan2f(new_y, sqrt_A2my2);
191 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
205 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
230 ry = crealf(w) + m_ln2;
232 ry = -ry;
233 return (CMPLXF(rx, ry));
244 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
265 float rx, ry; local
343 float x, y, ax, ay, rx, ry; local
    [all...]
catrigl.c 169 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
207 ry = asinl(B);
209 ry = atan2l(new_y, sqrt_A2my2);
210 return (CMPLXL(copysignl(rx, x), copysignl(ry, y)));
225 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
250 ry = creall(w) + m_ln2;
252 ry = -ry;
253 return (CMPLXL(rx, ry));
264 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
285 long double rx, ry; local
364 long double x, y, ax, ay, rx, ry; local
    [all...]
  /external/libaom/libaom/av1/encoder/
corner_match.h 24 int rx, ry; member in struct:__anon26591
  /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/virglrenderer/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/skqp/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/skia/src/gpu/effects/
GrEllipseEffect.cpp 138 SkScalar ry = testData->fRandom->nextRangeF(0.f, 1000.f); local
143 return GrEllipseEffect::Make(et, center, SkPoint::Make(rx, ry),
  /external/skqp/src/gpu/effects/
GrEllipseEffect.cpp 137 SkScalar ry = testData->fRandom->nextRangeF(0.f, 1000.f); local
142 return GrEllipseEffect::Make(et, center, SkPoint::Make(rx, ry),
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
reduction_ops_common.cc 114 auto ry = xla::Parameter(&r, 1, xla::ShapeUtil::MakeShape(type, {}), "y"); local
116 BuildReducer(&r, rx, ry);
  /external/skia/gm/
addarc.cpp 87 SkScalar ry = SkScalarSin(rad) * R; local
89 canvas->drawLine(0, 0, rx, ry, paint);
  /external/skqp/gm/
addarc.cpp 87 SkScalar ry = SkScalarSin(rad) * R; local
89 canvas->drawLine(0, 0, rx, ry, paint);
  /external/libchrome/ui/gfx/geometry/
rect.cc 216 int ry = y(); local
230 ry = rect.bottom();
235 SetByBounds(rx, ry, rr, rb);
rect_f.cc 105 float ry = std::max(y(), rect.y()); local
109 if (rx >= rr || ry >= rb) {
114 SetRect(rx, ry, rr - rx, rb - ry);
126 float ry = std::min(y(), rect.y()); local
130 SetRect(rx, ry, rr - rx, rb - ry);
142 float ry = y(); local
156 ry = rect.bottom();
161 SetRect(rx, ry, rr - rx, rb - ry)
253 float ry = std::min(p1.y(), p2.y()); local
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
mct.c 225 const __m128i ry = _mm_set1_epi32(2449); local
246 lo = _mm_mul_epi32(lo, ry);
247 hi = _mm_mul_epi32(hi, ry);
  /external/ImageMagick/MagickCore/
geometry.h 97 ry, member in struct:_AffineMatrix
  /external/epid-sdk/epid/common/math/src/
tatepairing.c 317 FfElement* ry = NULL; local
402 // Let X, Y, Z, X', Y', Z', w, v, ty, ry be elements in Fq.
421 result = NewFfElement(ps->Fq, &ry);
454 // ry = 1.
455 result = ReadFfElement(ps->Fq, &one_fq, sizeof(one_fq), ry);
551 /* udpate rx, ry */
556 result = FfMul(ps->Fq, ry, ry, t1); // t1 = ry * ry
    [all...]
  /external/skia/src/compute/sk/
SkDevice_Compute.cpp 565 float const ry = dx * scale; local
569 err = skc_path_move_to(fPB,xy0.fX-rx,xy0.fY+ry);
570 err = skc_path_line_to(fPB,xy1.fX-rx,xy1.fY+ry);
571 err = skc_path_line_to(fPB,xy1.fX+rx,xy1.fY-ry);
572 err = skc_path_line_to(fPB,xy0.fX+rx,xy0.fY-ry);
573 err = skc_path_line_to(fPB,xy0.fX-rx,xy0.fY+ry);
  /external/skqp/src/compute/sk/
SkDevice_Compute.cpp 565 float const ry = dx * scale; local
569 err = skc_path_move_to(fPB,xy0.fX-rx,xy0.fY+ry);
570 err = skc_path_line_to(fPB,xy1.fX-rx,xy1.fY+ry);
571 err = skc_path_line_to(fPB,xy1.fX+rx,xy1.fY-ry);
572 err = skc_path_line_to(fPB,xy0.fX+rx,xy0.fY-ry);
573 err = skc_path_line_to(fPB,xy0.fX-rx,xy0.fY+ry);
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorTests.cpp 199 const float ry = 2.0f * renderArea.w(); local
208 const float y = y0 + rng.getFloat(0.0f, ry);
217 const float y = y0 + rng.getFloat(0.0f, ry - size);
227 const float y = y0 + rng.getFloat(0.0f, ry - size);
236 vertices.push_back(makeVertex(x0 + rx, y0 + ry, primitiveColor));
241 vertices.push_back(makeVertex(x0 + rx/2.0f, y0 + ry, primitiveColor));

Completed in 716 milliseconds

1 2 3