/external/fonttools/Lib/fontTools/svgLib/path/ |
D | shapes.py | 65 def _arc(self, c, rx, ry, x, y, large_arc): argument 66 self._add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc, 69 def A(self, rx, ry, x, y, large_arc=0): argument 70 self._arc('A', rx, ry, x, y, large_arc) 72 def a(self, rx, ry, x, y, large_arc=0): argument 73 self._arc('a', rx, ry, x, y, large_arc) 115 ry = float(rect.attrib.get('ry', 0)) 117 rx = _prefer_non_zero(rx, ry) 118 ry = _prefer_non_zero(ry, rx) 125 self.A(rx, ry, x + w, y + ry) [all …]
|
D | arc.py | 23 def __init__(self, current_point, rx, ry, rotation, large, sweep, target_point): argument 26 self.ry = ry 47 ry = fabs(self.ry) 48 if not (rx and ry): 62 square_ry = ry * ry 71 ry *= sqrt(radii_scale) 72 self.rx, self.ry = rx, ry 74 point_transform = Scale(1 / rx, 1 / ry).rotate(-self.angle) 113 point_transform = Identity.rotate(self.angle).scale(self.rx, self.ry)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_texture.c | 49 float rx, ry, rz; in util_map_texcoords2d_onto_cubemap() local 70 ry = -tc; in util_map_texcoords2d_onto_cubemap() 75 ry = -tc; in util_map_texcoords2d_onto_cubemap() 80 ry = 1; in util_map_texcoords2d_onto_cubemap() 85 ry = -1; in util_map_texcoords2d_onto_cubemap() 90 ry = -tc; in util_map_texcoords2d_onto_cubemap() 95 ry = -tc; in util_map_texcoords2d_onto_cubemap() 99 rx = ry = rz = 0; in util_map_texcoords2d_onto_cubemap() 104 out_str[1] = ry; /*t*/ in util_map_texcoords2d_onto_cubemap()
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_texture.c | 49 float rx, ry, rz; in util_map_texcoords2d_onto_cubemap() local 70 ry = -tc; in util_map_texcoords2d_onto_cubemap() 75 ry = -tc; in util_map_texcoords2d_onto_cubemap() 80 ry = 1; in util_map_texcoords2d_onto_cubemap() 85 ry = -1; in util_map_texcoords2d_onto_cubemap() 90 ry = -tc; in util_map_texcoords2d_onto_cubemap() 95 ry = -tc; in util_map_texcoords2d_onto_cubemap() 99 rx = ry = rz = 0; in util_map_texcoords2d_onto_cubemap() 104 out_str[1] = ry; /*t*/ in util_map_texcoords2d_onto_cubemap()
|
/external/skqp/experimental/svg/model/ |
D | SkSVGEllipse.cpp | 27 void SkSVGEllipse::setRy(const SkSVGLength& ry) { in setRy() argument 28 fRy = ry; in setRy() 49 if (const auto* ry = v.as<SkSVGLengthValue>()) { in onSetAttribute() local 50 this->setRy(*ry); in onSetAttribute() 62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve() local 64 return (rx > 0 && ry > 0) in resolve() 65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2) in resolve()
|
D | SkSVGRect.cpp | 36 void SkSVGRect::setRy(const SkSVGLength& ry) { in setRy() argument 37 fRy = ry; in setRy() 68 if (const auto* ry = v.as<SkSVGLengthValue>()) { in onSetAttribute() local 69 this->setRy(*ry); in onSetAttribute() 80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve() local 82 return SkRRect::MakeRectXY(rect, rx ,ry); in resolve()
|
/external/cldr/common/testData/transforms/ |
D | ja-Latn-t-ja-hrkt-m0-bgn.txt | 143 リャ リュ リュウ リョ リョウ ロウ rya ryu ryū ryo ryō rō 144 リャ リュ リュウ リョ リョウ ロウ rya ryu ryū ryo ryō rō 145 りゃ りゅ りゅう りょ りょう ろう rya ryu ryū ryo ryō rō 206 リャーリューリュウーリョーリョウーロウー ryāryūryūryōryōrō 207 りゃーりゅーりゅうーりょーりょうーろうー ryāryūryūryōryōrō 250 リャーリューリュウーリョーリョウーロウー ryāryūryūryōryōrō 251 りゃーりゅーりゅうーりょーりょうーろうー ryāryūryūryōryōrō
|
/external/ImageMagick/Magick++/lib/ |
D | Options.cpp | 799 affine.ry=0.0; in transformOrigin() 804 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx; in transformOrigin() 806 _drawInfo->affine.ry=current.sx*affine.ry+current.ry*affine.sy; in transformOrigin() 807 _drawInfo->affine.sy=current.rx*affine.ry+current.sy*affine.sy; in transformOrigin() 808 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx; in transformOrigin() 816 _drawInfo->affine.ry=0.0; in transformReset() 830 affine.ry=sin(DegreesToRadians(fmod(angle_,360.0))); in transformRotation() 835 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx; in transformRotation() 837 _drawInfo->affine.ry=current.sx*affine.ry+current.ry*affine.sy; in transformRotation() 838 _drawInfo->affine.sy=current.rx*affine.ry+current.sy*affine.sy; in transformRotation() [all …]
|
/external/libchrome/ui/gfx/geometry/ |
D | rect_f.cc | 105 float ry = std::max(y(), rect.y()); in Intersect() local 109 if (rx >= rr || ry >= rb) { in Intersect() 114 SetRect(rx, ry, rr - rx, rb - ry); in Intersect() 126 float ry = std::min(y(), rect.y()); in Union() local 130 SetRect(rx, ry, rr - rx, rb - ry); in Union() 142 float ry = y(); in Subtract() local 156 ry = rect.bottom(); in Subtract() 161 SetRect(rx, ry, rr - rx, rb - ry); in Subtract() 253 float ry = std::min(p1.y(), p2.y()); in BoundingRect() local 256 return RectF(rx, ry, rr - rx, rb - ry); in BoundingRect()
|
/external/llvm/lib/Target/Mips/ |
D | Mips16InstrFormats.td | 24 // ry 3-bit source or destination register 132 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|> 140 bits<3> ry; 147 let Inst{7-5} = ry; 229 // Format RRI instruction class in Mips : <|opcode|rx|ry|imm5|> 237 bits<3> ry; 244 let Inst{7-5} = ry; 249 // Format RRR instruction class in Mips : <|opcode|rx|ry|rz|f|> 257 bits<3> ry; 265 let Inst{7-5} = ry; [all …]
|
D | Mips16InstrInfo.td | 182 MipsPseudo16<(outs CPU16Regs:$cc), (ins CPU16Regs:$rx, CPU16Regs:$ry), 183 !strconcat(asmstr, "\t$rx, $ry\n\tmove\t$cc, $$t8"), []> { 236 FEXT_RRI16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 237 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 241 FEXT_RRI16<op, (outs ), (ins CPU16Regs:$ry, MemOpnd:$addr), 242 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 251 FEXT_RRI_A16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 252 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 258 FEXT_SHIFT16<_f, (outs CPU16Regs:$rx), (ins CPU16Regs:$ry, uimm5:$sa), 259 !strconcat(asmstr, "\t$rx, $ry, $sa"), [], itin>; [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | Mips16InstrFormats.td | 23 // ry 3-bit source or destination register 131 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|> 139 bits<3> ry; 146 let Inst{7-5} = ry; 228 // Format RRI instruction class in Mips : <|opcode|rx|ry|imm5|> 236 bits<3> ry; 243 let Inst{7-5} = ry; 248 // Format RRR instruction class in Mips : <|opcode|rx|ry|rz|f|> 256 bits<3> ry; 264 let Inst{7-5} = ry; [all …]
|
D | Mips16InstrInfo.td | 181 MipsPseudo16<(outs CPU16Regs:$cc), (ins CPU16Regs:$rx, CPU16Regs:$ry), 182 !strconcat(asmstr, "\t$rx, $ry\n\tmove\t$cc, $$t8"), []> { 235 FEXT_RRI16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 236 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 240 FEXT_RRI16<op, (outs ), (ins CPU16Regs:$ry, MemOpnd:$addr), 241 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 250 FEXT_RRI_A16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 251 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 257 FEXT_SHIFT16<_f, (outs CPU16Regs:$rx), (ins CPU16Regs:$ry, uimm5:$sa), 258 !strconcat(asmstr, "\t$rx, $ry, $sa"), [], itin>; [all …]
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | Mips16InstrFormats.td | 23 // ry 3-bit source or destination register 131 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|> 139 bits<3> ry; 146 let Inst{7-5} = ry; 228 // Format RRI instruction class in Mips : <|opcode|rx|ry|imm5|> 236 bits<3> ry; 243 let Inst{7-5} = ry; 248 // Format RRR instruction class in Mips : <|opcode|rx|ry|rz|f|> 256 bits<3> ry; 264 let Inst{7-5} = ry; [all …]
|
D | Mips16InstrInfo.td | 181 MipsPseudo16<(outs CPU16Regs:$cc), (ins CPU16Regs:$rx, CPU16Regs:$ry), 182 !strconcat(asmstr, "\t$rx, $ry\n\tmove\t$cc, $$t8"), []> { 235 FEXT_RRI16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 236 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 240 FEXT_RRI16<op, (outs ), (ins CPU16Regs:$ry, MemOpnd:$addr), 241 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 250 FEXT_RRI_A16<op, (outs CPU16Regs:$ry), (ins MemOpnd:$addr), 251 !strconcat(asmstr, "\t$ry, $addr"), [], itin>; 257 FEXT_SHIFT16<_f, (outs CPU16Regs:$rx), (ins CPU16Regs:$ry, uimm5:$sa), 258 !strconcat(asmstr, "\t$rx, $ry, $sa"), [], itin>; [all …]
|
/external/perfetto/docs/images/ |
D | dataflow.svg | 1 …ry="0" transform="matrix(-1 0 -0 -1 159.98437500000000 130)" fill="rgb(245,245,245)" stroke="none"… 3 …5,75) scale(1,1)"><rect id="ec4qhmsv5c9j25" width="140" height="30" rx="0" ry="0" transform="trans… 7 …ry="0" transform="matrix(-1 0 -0 -1 280 80.00000000000003)" fill="rgb(245,245,245)" stroke="none" … 9 …ry="0" transform="matrix(1 0 0 1 340 110)" fill="none" fill-rule="evenodd" stroke="none" stroke-wi… 15 …ry="0" transform="matrix(1 0 0 1 131 100)" fill="rgb(96,125,139)" fill-rule="evenodd" stroke="none…
|
/external/skqp/src/compute/skc/ |
D | path_builder.c | 219 float rx, float ry) in skc_path_ellipse() argument 230 skc_path_move_to_1(path_builder, cx, cy + ry); in skc_path_ellipse() 235 float const ky = ry * KAPPA_FLOAT; in skc_path_ellipse() 240 cx + kx, cy + ry, in skc_path_ellipse() 249 cx + kx, cy - ry, in skc_path_ellipse() 250 cx, cy - ry); in skc_path_ellipse() 256 cx - kx, cy - ry, in skc_path_ellipse() 265 cx - kx, cy + ry, in skc_path_ellipse() 266 cx, cy + ry); in skc_path_ellipse()
|
/external/pdfium/third_party/lcms/src/ |
D | cmsintrp.c | 401 register int rx, ry; in BilinearInterp16() local 417 ry = FIXED_REST_TO_INT(fy); in BilinearInterp16() 436 dxy = LERP(ry, dx0, dx1); in BilinearInterp16() 532 register int rx, ry, rz; in TrilinearInterp16() local 549 ry = FIXED_REST_TO_INT(fy); in TrilinearInterp16() 583 dxy0 = LERP(ry, dx00, dx10); in TrilinearInterp16() 584 dxy1 = LERP(ry, dx01, dx11); in TrilinearInterp16() 608 cmsFloat32Number rx, ry, rz; in TetrahedralInterpFloat() local 620 y0 = (int) floor(py); ry = (py - (cmsFloat32Number) y0); in TetrahedralInterpFloat() 639 if (rx >= ry && ry >= rz) { in TetrahedralInterpFloat() [all …]
|
/external/icu/icu4c/source/data/curr/ |
D | rn.txt | 20 "Idinari ry’iribahireyini", 24 "Ifaranga ry’Uburundi", 40 "Ifaranga ry’Ubusuwisi", 96 "Iyeni ry’Ubuyapani", 156 "Ifaranga ry’u Rwanda", 204 "Ishilingi ry’Ubugande", 208 "Idolari ry’abanyamerika",
|
/external/skia/modules/svg/src/ |
D | SkSVGEllipse.cpp | 27 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve() local 29 return (rx > 0 && ry > 0) in resolve() 30 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2) in resolve()
|
/external/skqp/tools/lua/ |
D | classify_rrect_clips.lua | 16 local rx, ry 25 ry = y 29 if (rx ~= x or ry ~=y) then 49 if (rx == ry) then
|
/external/libaom/libaom/av1/encoder/ |
D | corner_match.c | 98 correspondences[i].ry + y, width, height)) in improve_correspondence() 102 correspondences[i].ry + y, width, height)) in improve_correspondence() 106 ref_stride, correspondences[i].rx + x, correspondences[i].ry + y); in improve_correspondence() 115 correspondences[i].ry += best_y; in improve_correspondence() 128 correspondences[i].rx, correspondences[i].ry, width, height)) in improve_correspondence() 131 ref, ref_stride, correspondences[i].rx, correspondences[i].ry, frm, in improve_correspondence() 186 correspondences[num_correspondences].ry = in av1_determine_correspondence()
|
/external/skqp/src/gpu/ |
D | GrQuad.cpp | 164 Sk4f ry(rect.fTop, rect.fBottom, rect.fTop, rect.fBottom); in GrQuad() local 171 auto x = SkNx_fma(sx, rx, SkNx_fma(kx, ry, tx)); in GrQuad() 172 auto y = SkNx_fma(ky, rx, SkNx_fma(sy, ry, ty)); in GrQuad() 177 auto iw = SkNx_fma(w0, rx, SkNx_fma(w1, ry, w2)).invert(); in GrQuad() 207 Sk4f ry(rect.fTop, rect.fBottom, rect.fTop, rect.fBottom); in GrPerspQuad() local 214 SkNx_fma(sx, rx, SkNx_fma(kx, ry, tx)).store(fX); in GrPerspQuad() 215 SkNx_fma(ky, rx, SkNx_fma(sy, ry, ty)).store(fY); in GrPerspQuad() 220 auto w = SkNx_fma(w0, rx, SkNx_fma(w1, ry, w2)); in GrPerspQuad()
|
/external/llvm-project/llvm/lib/Target/CSKY/ |
D | CSKYInstrFormats.td | 289 op #"\t${ry}, (${rx}), " #!cast<int>(imm5), pattern> { 291 bits<5> ry; 292 let Inst{25 - 21} = ry; // ry 378 !strconcat(op, "\t$rz, $rx, $ry"), pattern> { 379 bits<5> ry; 382 let Inst{25 - 21} = ry; 391 // Input: GPR:rx, GPR:ry 392 // Asm string: op rz, rx, ry 397 (ins GPR:$rx, GPR:$ry), op, [(set GPR:$rz, (opnode GPR:$rx, GPR:$ry))]> { 407 op #"\t$rz, ($rx, $ry << " #no #")", pattern> { [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_grad.py | 96 rx, ry = gen_array_ops.broadcast_gradient_args(sx, sy) 97 return (sx, rx, True), (sy, ry, True) 109 rx, ry = gen_array_ops.broadcast_gradient_args(sx, sy) 110 return (sx, rx, True), (sy, ry, True) 120 …rx, ry = g._bcast_grad_args_cache[(x_shape_tuple, y_shape_tuple)] # pylint: disable=protected-acc… 122 y_shape_tuple, ry, y_needs_reduction) 124 rx, ry = array_ops.broadcast_gradient_args(x_shape_tuple, y_shape_tuple) 131 ry.graph._c_graph, ry._as_tf_output())) # pylint: disable=protected-access 711 rx, ry = gen_array_ops.broadcast_gradient_args(sx, sy) 718 array_ops.reshape(math_ops.reduce_sum(partial_y * grad, ry), sy)) [all …]
|