/third_party/skia/gm/ |
H A D | textblobtransforms.cpp | 98 // now rotate 100 canvas->rotate(180.f); 102 canvas->rotate(-180.f); 104 canvas->rotate(-180.f); 106 canvas->rotate(270.f); 108 canvas->rotate(-90.f); 110 canvas->rotate(-90.f); 112 canvas->rotate(90.f); 127 canvas->rotate(23.f); 131 canvas->rotate( [all...] |
H A D | dashcircle.cpp | 82 canvas->rotate(fRotation); 97 canvas->rotate(fRotation); 173 SkMatrix rotate; variable 174 rotate.setRotate(25.f); 181 rotate, 183 SkMatrix::Concat(SkMatrix::MakeAll(-1, 0, 0, 0, 1, 0, 0, 0, 1), rotate), 184 rotate)
|
H A D | localmatriximageshader.cpp | 37 SkMatrix rotate; in DEF_SIMPLE_GM() local 38 rotate.setRotate(45.0f); in DEF_SIMPLE_GM() 40 sk_sp<SkShader> redLocalMatrixShader = redImageShader->makeWithLocalMatrix(rotate); in DEF_SIMPLE_GM() 48 sk_sp<SkShader> blueImageShader = blueImage->makeShader(SkSamplingOptions(), &rotate); in DEF_SIMPLE_GM()
|
H A D | aaa.cpp | 33 canvas->rotate(1); in DEF_SIMPLE_GM() 41 canvas->rotate(1); in DEF_SIMPLE_GM() 100 canvas->rotate(1); in DEF_SIMPLE_GM() 114 canvas->rotate(1); in DEF_SIMPLE_GM()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | Hashing.h | 167 /// \brief Bitwise right rotate. 170 inline uint64_t rotate(uint64_t val, size_t shift) { in rotate() function 207 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes() 215 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, in hash_17to32_bytes() 216 a + rotate(b ^ k3, 20) - c + len + seed); in hash_17to32_bytes() 222 uint64_t b = rotate(a + z, 52); in hash_33to64_bytes() 223 uint64_t c = rotate(a, 37); in hash_33to64_bytes() 225 c += rotate(a, 7); in hash_33to64_bytes() 228 uint64_t vs = b + rotate( in hash_33to64_bytes() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | Hashing.h | 166 /// Bitwise right rotate. 169 inline uint64_t rotate(uint64_t val, size_t shift) { in rotate() function 206 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes() 214 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, in hash_17to32_bytes() 215 a + rotate(b ^ k3, 20) - c + len + seed); in hash_17to32_bytes() 221 uint64_t b = rotate(a + z, 52); in hash_33to64_bytes() 222 uint64_t c = rotate(a, 37); in hash_33to64_bytes() 224 c += rotate(a, 7); in hash_33to64_bytes() 227 uint64_t vs = b + rotate( in hash_33to64_bytes() [all...] |
/third_party/cmsis/CMSIS/Core/Include/a-profile/ |
H A D | cmsis_gcc_a.h | 233 \param [in] op1 Value to rotate 234 \param [in] op2 Number of Bits to rotate 451 \param [in] value Value to rotate 707 __STATIC_FORCEINLINE uint32_t __SXTB16_RORn(uint32_t op1, uint32_t rotate) in __SXTB16_RORn() argument 710 if (__builtin_constant_p(rotate) && ((rotate == 8U) || (rotate == 16U) || (rotate == 24U))) in __SXTB16_RORn() 712 __ASM volatile("sxtb16 %0, %1, ROR %2" : "=r"(result) : "r"(op1), "i"(rotate)); in __SXTB16_RORn() 716 result = __SXTB16(__ROR(op1, rotate)); in __SXTB16_RORn() 721 __SXTAB16_RORn(uint32_t op1, uint32_t op2, uint32_t rotate) __SXTAB16_RORn() argument [all...] |
H A D | cmsis_clang_a.h | 226 \param [in] op1 Value to rotate 227 \param [in] op2 Number of Bits to rotate 428 \param [in] value Value to rotate 684 __STATIC_FORCEINLINE uint32_t __SXTB16_RORn(uint32_t op1, uint32_t rotate) in __SXTB16_RORn() argument 687 if (__builtin_constant_p(rotate) && ((rotate == 8U) || (rotate == 16U) || (rotate == 24U))) in __SXTB16_RORn() 689 __ASM volatile("sxtb16 %0, %1, ROR %2" : "=r"(result) : "r"(op1), "i"(rotate)); in __SXTB16_RORn() 693 result = __SXTB16(__ROR(op1, rotate)); in __SXTB16_RORn() 698 __SXTAB16_RORn(uint32_t op1, uint32_t op2, uint32_t rotate) __SXTAB16_RORn() argument [all...] |
/third_party/skia/samplecode/ |
H A D | SampleClock.cpp | 31 canvas->rotate(-180.f/2.f); 51 canvas->rotate(180.f/6.f); 77 canvas->rotate(180.f/30.f); 88 canvas->rotate(180.f/30.f); 99 canvas->rotate(time.fHour*(180.f/6.f) + time.fMinute*(180.f/360.f) 120 canvas->rotate(time.fMinute*(180.f/30.f) 141 canvas->rotate(time.fSecond*(180.f/30.f));
|
H A D | SampleManyRects.cpp | 42 SkMatrix rotate; variable 43 rotate.setRotate(fRandom.nextUScalar1() * 360, 46 canvas->concat(rotate);
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_vpp_qsv.c | 82 int rotate; /* rotate angle : [0, 90, 180, 270] */ member 117 { "cclock_hflip", "rotate counter-clockwise with horizontal flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .flags=FLAGS, .unit = "transpose" }, 118 { "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .flags=FLAGS, .unit = "transpose" }, 119 { "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .flags=FLAGS, .unit = "transpose" }, 120 { "clock_hflip", "rotate clockwise with horizontal flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .flags=FLAGS, .unit = "transpose" }, 121 { "reversal", "rotate by half-turn", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_REVERSAL }, .flags=FLAGS, .unit = "transpose" }, 421 vpp->rotate = MFX_ANGLE_270; in config_output() 425 vpp->rotate = MFX_ANGLE_90; in config_output() 429 vpp->rotate in config_output() [all...] |
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | test_trig.c | 192 int rotate; in test_rotate() local 195 for ( rotate = 0; rotate < FT_ANGLE_2PI; rotate += 0x10000L ) in test_rotate() 201 ra = rotate*SPI; in test_rotate() 221 FT_Vector_Rotate( &v, rotate ); in test_rotate()
|
/third_party/python/Modules/ |
H A D | rotatingtree.c | 67 int rotate; in RotatingTree_Get() local 73 rotate = !randombits(1); in RotatingTree_Get() 78 if (rotate) { in RotatingTree_Get() 90 if (rotate) { in RotatingTree_Get()
|
/third_party/cmsis/CMSIS/Core/Include/m-profile/ |
H A D | cmsis_gcc_m.h | 326 \param [in] op1 Value to rotate 327 \param [in] op2 Number of Bits to rotate 593 \param [in] value Value to rotate 1638 __STATIC_FORCEINLINE uint32_t __SXTB16_RORn(uint32_t op1, uint32_t rotate) in __SXTB16_RORn() argument 1641 if (__builtin_constant_p(rotate) && ((rotate == 8U) || (rotate == 16U) || (rotate == 24U))) in __SXTB16_RORn() 1643 __ASM volatile("sxtb16 %0, %1, ROR %2" : "=r"(result) : "r"(op1), "i"(rotate)); in __SXTB16_RORn() 1647 result = __SXTB16(__ROR(op1, rotate)); in __SXTB16_RORn() 1660 __SXTAB16_RORn(uint32_t op1, uint32_t op2, uint32_t rotate) __SXTAB16_RORn() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
H A D | MatrixStack.cpp | 72 void MatrixStack::rotate(float angle, float x, float y, float z) in rotate() function in sw::MatrixStack 86 sw::Matrix rotate(c+x*x*_c, x*y*_c-z*s, x*z*_c+y*s, in rotate() 90 stack[top] *= rotate; in rotate() 93 void MatrixStack::rotate(double angle, double x, double y, double z) in rotate() function in sw::MatrixStack 95 rotate((float)angle, (float)x, (float)y, (float)z); in rotate()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | templateLiteralTypes2.js | 117 const interpolatedStyle = { rotate: 12 }; 119 C2(`rotate(${interpolatedStyle.rotate}dig)`); 204 var interpolatedStyle = { rotate: 12 };
206 C2("rotate(".concat(interpolatedStyle.rotate, "dig)"));
239 rotate: number;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
H A D | algorithm.h | 79 return std::rotate(first, middle, last); in RotateImpl() 84 std::rotate(first, middle, last); in RotateImpl() 136 // rotate() 139 // `middle` is now the first element. `rotate()` returns an iterator pointing to 141 // `std::rotate`, but fixes a bug in gcc 142 // <= 4.9 where `std::rotate` returns `void` instead of an iterator. 144 // The complexity of this algorithm is the same as that of `std::rotate`, but if 145 // `ForwardIterator` is not a random-access iterator, then `absl::rotate` 148 ForwardIterator rotate(ForwardIterator first, ForwardIterator middle, in rotate() function 152 std::is_same<decltype(std::rotate(firs in rotate() [all...] |
/third_party/skia/bench/ |
H A D | RotatedRectBench.cpp | 105 SkMatrix rotate; variable 107 rotate.setRotate(30.f, kRectW / 2, kRectH / 2); 108 SkMatrix m = rotate; 141 m.postConcat(rotate);
|
/third_party/skia/docs/examples/ |
H A D | rotations.cpp | 7 canvas->rotate(60); in REG_FIDDLE() 15 canvas->rotate(SkIntToScalar(20)); in REG_FIDDLE()
|
H A D | Canvas_rotate.cpp | 12 canvas->rotate(10 * 360 / 60); // 10 minutes of 60 scaled to 360 degrees in REG_FIDDLE() 15 canvas->rotate((5 + 10.f/60) * 360 / 12); // 5 and 10/60 hours of 12 scaled to 360 degrees in REG_FIDDLE()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftstroke.c | 886 FT_Angle total, rotate; in ft_stroker_arcto() local 892 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto() 896 total = -rotate * 2; in ft_stroker_arcto() 901 stroker->angle_in + rotate, in ft_stroker_arcto() 975 FT_Angle phi, theta, rotate; in ft_stroker_inside() local 983 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_inside() 1011 stroker->angle_out + rotate ); in ft_stroker_inside() 1020 phi = stroker->angle_in + theta + rotate; in ft_stroker_inside() 1043 FT_Angle rotate; in ft_stroker_outside() local 1057 rotate in ft_stroker_outside() 1428 FT_Angle theta, phi, rotate, alpha0 = 0; FT_EXPORT_DEF() local 1635 FT_Angle theta1, phi1, theta2, phi2, rotate, alpha0 = 0; FT_EXPORT_DEF() local [all...] |
/third_party/backends/frontend/ |
H A D | jpegtopdf.h | 48 /* sane_pdf_StartPage - rotate */
50 SANE_PDF_ROTATE_OFF = 0, /* rotate off */
51 SANE_PDF_ROTATE_ON, /* rotate 180 degrees */
59 SANE_Int rotate;
member 74 SANE_Int sane_pdf_start_page( void *pw, SANE_Int w, SANE_Int h, SANE_Int res, SANE_Int type, SANE_Int rotate );
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
H A D | rotate_vector.hpp | 10 /// @brief Function to directly rotate a vector 45 GLM_FUNC_DECL tvec2<T, P> rotate( 52 GLM_FUNC_DECL tvec3<T, P> rotate( 60 GLM_FUNC_DECL tvec4<T, P> rotate(
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | gen-swizzle-math-operations.py | 89 def rotate(l, n) : function 171 swizzle2 = rotate(swizzle1, 1) 172 rotatedSwizzleIndices = rotate(swizzleIndices, 1)
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_query_hw.c | 135 if (hq->rotate) { in nv50_hw_begin_query() 136 hq->offset += hq->rotate; in nv50_hw_begin_query() 137 hq->data += hq->rotate / sizeof(*hq->data); in nv50_hw_begin_query() 385 hq->rotate = 32; in nv50_hw_create_query() 418 if (hq->rotate) { in nv50_hw_create_query() 420 hq->offset -= hq->rotate; in nv50_hw_create_query() 421 hq->data -= hq->rotate / sizeof(*hq->data); in nv50_hw_create_query()
|