Home
last modified time | relevance | path

Searched refs:rot (Results 1 - 25 of 74) sorted by relevance

123

/third_party/ffmpeg/libavfilter/
H A Dvf_rotate.c116 RotContext *rot = ctx->priv; in init() local
118 if (!strcmp(rot->fillcolor_str, "none")) in init()
119 rot->fillcolor_enable = 0; in init()
120 else if (av_parse_color(rot->fillcolor, rot->fillcolor_str, -1, ctx) >= 0) in init()
121 rot->fillcolor_enable = 1; in init()
129 RotContext *rot = ctx->priv; in uninit() local
131 av_expr_free(rot->angle_expr); in uninit()
132 rot->angle_expr = NULL; in uninit()
160 RotContext *rot in get_rotated_w() local
172 RotContext *rot = opaque; get_rotated_h() local
284 RotContext *rot = ctx->priv; config_props() local
417 RotContext *rot = ctx->priv; filter_slice() local
507 RotContext *rot = ctx->priv; filter_frame() local
559 RotContext *rot = ctx->priv; process_command() local
[all...]
H A Dvf_hqx.c99 #define SHF(x, rot, n) (((x) >> ((rot) ? 7-DROP4(n) : DROP4(n)) & 1) << DROP4(p##n))
105 * masks and surrounding pixels. The rot flag is used to indicate if it's a
107 #define INTERP_BOOTSTRAP(rot) \
108 const int k_shuffled = SHF(k,rot,0) | SHF(k,rot,1) | SHF(k,rot,2) \
109 | SHF(k,rot,3) | 0 | SHF(k,rot,5) \
110 | SHF(k,rot,
[all...]
/third_party/toybox/toys/lsb/
H A Dmd5sum.c134 unsigned int in, a, rot, temp; in md5_transform() local
139 rot = 7+(5*(i&3)); in md5_transform()
145 rot = temp*5; in md5_transform()
146 if (temp&2) rot--; in md5_transform()
151 rot = i&3; in md5_transform()
152 rot = 4+(5*rot)+((rot+1)&6); in md5_transform()
156 rot = (i&3)+1; in md5_transform()
157 rot in md5_transform()
175 unsigned *rot[5], *temp; sha1_transform() local
[all...]
/third_party/cups-filters/filter/pdftopdf/
H A Dqpdf_pdftopdf.cc27 double rot=page.getKey("/Rotate").getNumericValue(); in getRotate() local
28 rot=fmod(rot,360.0); in getRotate()
29 if (rot<0) { in getRotate()
30 rot+=360.0; in getRotate()
32 if (rot==90.0) { // CW in getRotate()
34 } else if (rot==180.0) { in getRotate()
36 } else if (rot==270.0) { in getRotate()
38 } else if (rot!=0.0) { in getRotate()
39 throw std::runtime_error("Unexpected /Rotation value: "+QUtil::double_to_string(rot)); in getRotate()
54 makeRotate(Rotation rot) makeRotate() argument
98 rotate(Rotation rot) rotate() argument
127 rotate_move(Rotation rot,double width,double height) rotate_move() argument
[all...]
H A Dpptypes.cc34 void Rotation_dump(Rotation rot) // {{{ in Rotation_dump() argument
37 if ((rot < ROT_0) || (rot > ROT_270)) { in Rotation_dump()
38 fprintf(stderr,"(bad rotation: %d)",rot); in Rotation_dump()
40 fputs(rstr[rot],stderr); in Rotation_dump()
H A Dqpdf_pdftopdf.h14 QPDFObjectHandle makeRotate(Rotation rot); // Integer
24 Matrix &rotate(Rotation rot);
25 Matrix &rotate_move(Rotation rot,double width,double height);
H A Dqpdf_xobject.cc103 Rotation rot=getRotate(page); in makeXObject() local
111 tmp.rotate_move(rot,bbox.width,bbox.height); in makeXObject()
115 mtx.rotate(rot); // 2. rotate coordinates according to /Rotate in makeXObject()
/third_party/node/deps/openssl/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl68 my $rot = (7,12,17,22)[$i%4];
83 sll $a,$rot,$t3
85 srl $a,32-$rot,$a
99 sll $a,$rot,$t3
101 srl $a,32-$rot,$a
111 my $rot = (7,12,17,22)[$i%4];
121 sll $a,$rot,$t3
123 srl $a,32-$rot,$a
132 my $rot = (5,9,14,20)[$i%4];
146 sll $a,$rot,
[all...]
/third_party/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl68 my $rot = (7,12,17,22)[$i%4];
83 sll $a,$rot,$t3
85 srl $a,32-$rot,$a
99 sll $a,$rot,$t3
101 srl $a,32-$rot,$a
111 my $rot = (7,12,17,22)[$i%4];
121 sll $a,$rot,$t3
123 srl $a,32-$rot,$a
132 my $rot = (5,9,14,20)[$i%4];
146 sll $a,$rot,
[all...]
/third_party/skia/gm/
H A Ddstreadshuffle.cpp86 SkMatrix rot; in drawShape() local
87 rot.setRotate(360.f / 5, 50.f, 70.f); in drawShape()
89 rot.mapPoints(points + i, points + i - 1, 1); in drawShape()
131 SkMatrix rot; in DrawHairlines() local
132 rot.setRotate(360.f / kNumHairlines, 15.5f, 12.f); in DrawHairlines()
133 rot.postTranslate(3.f, 0); in DrawHairlines()
137 rot.mapPoints(pts, 2); in DrawHairlines()
H A Dsharedcorners.cpp129 SkMatrix rot; in drawTriangleBoxes() local
130 rot.setRotate(45, path.getBounds().centerX(), path.getBounds().centerY()); in drawTriangleBoxes()
131 path.transform(rot); in drawTriangleBoxes()
135 rot.setRotate(-45 - 69.38111f, path.getBounds().centerX(), path.getBounds().centerY()); in drawTriangleBoxes()
136 path.transform(rot); in drawTriangleBoxes()
/third_party/skia/modules/skottie/src/effects/
H A DDirectionalBlur.cpp39 const auto rot = fDirection - 90; variable
41 SkImageFilters::MatrixTransform(SkMatrix::RotateDeg(rot),
44 SkImageFilters::MatrixTransform(SkMatrix::RotateDeg(-rot),
/third_party/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) in rotate() argument
129 /* normalize rot and handle degenerate cases */ in rotate()
131 if (rot >= len) rot %= len; in rotate()
132 if (rot == 0) return; in rotate()
138 if (rot == 1) { in rotate()
146 if (rot == len - 1) { in rotate()
154 cycles = gcd(len, rot); /* number of cycles */ in rotate()
160 from += rot; /* g in rotate()
[all...]
/third_party/node/deps/openssl/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl480 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
483 if ($rot) {
485 &shld ($i0,$i1,$rot);
486 &shld ($i1,$i2,$rot);
487 &shld ($i2,$i3,$rot);
488 &shld ($i3,$idx,$rot);
500 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
503 if ($rot) {
505 &shl ($i0,$rot);
507 &shr ($idx,32-$rot);
[all...]
/third_party/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl480 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
483 if ($rot) {
485 &shld ($i0,$i1,$rot);
486 &shld ($i1,$i2,$rot);
487 &shld ($i2,$i3,$rot);
488 &shld ($i3,$idx,$rot);
500 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
503 if ($rot) {
505 &shl ($i0,$rot);
507 &shr ($idx,32-$rot);
[all...]
/third_party/json/docs/examples/
H A Dnlohmann_json_serialize_enum_2.cpp17 { Color::red, "rot" } // a second conversion for Color::red
28 json j_rot = "rot"; in main()
29 auto rot = j_rot.get<ns::Color>(); in main() local
31 std::cout << j_rot << " -> " << static_cast<int>(rot) << std::endl; in main()
/third_party/skia/docs/examples/
H A Dpicture_shader.cpp30 SkMatrix rot; in REG_FIDDLE() local
31 rot.setRotate(90.0f); in REG_FIDDLE()
33 SK_ARRAY_COUNT(sweep_colors), 0, &rot)); in REG_FIDDLE()
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha1-armv8.pl80 add $e,$e,$t2 // e+=rot(a,5)
97 add $e,$e,$t2 // e+=rot(a,5)
122 add $e,$e,$t2 // e+=rot(a,5)
147 add $e,$e,$t2 // e+=rot(a,5)
160 add $e,$e,$t2 // e+=rot(a,5)
170 add $e,$e,$t2 // e+=rot(a,5)
/third_party/openssl/crypto/sha/asm/
H A Dsha1-armv8.pl80 add $e,$e,$t2 // e+=rot(a,5)
97 add $e,$e,$t2 // e+=rot(a,5)
122 add $e,$e,$t2 // e+=rot(a,5)
147 add $e,$e,$t2 // e+=rot(a,5)
160 add $e,$e,$t2 // e+=rot(a,5)
170 add $e,$e,$t2 // e+=rot(a,5)
/third_party/vixl/src/aarch32/
H A Dinstructions-aarch32.cc680 // Deal with rot = 0 first to avoid undefined shift by 32. in ImmediateA32()
685 for (int rot = 2; rot < 32; rot += 2) { in ImmediateA32()
686 uint32_t imm8 = (imm << rot) | (imm >> (32 - rot)); in ImmediateA32()
688 SetEncodingValue((rot << 7) | imm8); in ImmediateA32()
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dswapchain9ex.c73 D3DDISPLAYROTATION rot; in NineSwapChain9Ex_GetDisplayModeEx() local
76 if (!pRotation) { pRotation = &rot; } in NineSwapChain9Ex_GetDisplayModeEx()
/third_party/skia/samplecode/
H A DSampleFlutterAnimate.cpp44 double rot = SkScalarInterp(fChars[i].fStartRotation, fChars[i].fEndRotation, variable
47 canvas->rotate(SkRadiansToDegrees(rot));
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-sve-aarch64.cc609 int rot) { \
615 ASMFN(ztmp, zn, zm, index, rot); \
620 ASMFN(zd, zn, zm, index, rot); \
1932 int rot) { in Cdot()
1940 cdot(ztmp, zn, zm, index, rot); in Cdot()
1945 cdot(zd, zn, zm, index, rot); in Cdot()
1953 int rot) { in Cdot()
1960 cdot(zd, (zd.Aliases(zn) ? ztmp : zn), (zd.Aliases(zm) ? ztmp : zm), rot); in Cdot()
1963 cdot(zd, zn, zm, rot); in Cdot()
2108 int rot) { in Fcadd()
1927 Cdot(const ZRegister& zd, const ZRegister& za, const ZRegister& zn, const ZRegister& zm, int index, int rot) Cdot() argument
1949 Cdot(const ZRegister& zd, const ZRegister& za, const ZRegister& zn, const ZRegister& zm, int rot) Cdot() argument
2104 Fcadd(const ZRegister& zd, const PRegisterM& pg, const ZRegister& zn, const ZRegister& zm, int rot) Fcadd() argument
2124 Fcmla(const ZRegister& zd, const PRegisterM& pg, const ZRegister& za, const ZRegister& zn, const ZRegister& zm, int rot) Fcmla() argument
2253 ComplexAddition(ZZZImmFn fn, const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int rot) ComplexAddition() argument
2273 Cadd(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int rot) Cadd() argument
2280 Sqcadd(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int rot) Sqcadd() argument
[all...]
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
H A DCubeActivity.java175 final float rot = (float) Math.PI; in CubeRenderer()
177 new Face(0, -rot/2, new ImageShaderSample(res, R.raw.brickwork_texture)), in CubeRenderer()
179 new Face(0, rot , new RuntimeSample(res, R.raw.runtime_shader1)), in CubeRenderer()
180 new Face(rot/2, 0 , new SkottieSample(res, R.raw.permission)), in CubeRenderer()
181 new Face(0, rot/2 , new RuntimeSample(res, R.raw.runtime_shader2)), in CubeRenderer()
/third_party/musl/src/search/
H A Dtsearch.c7 static int rot(void **p, struct node *x, int dir /* deeper side */) in rot() function
59 return rot(p, n, h0<h1); in __tsearch_balance()

Completed in 14 milliseconds

123