Home
last modified time | relevance | path

Searched refs:rotate (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/chromium-trace/catapult/third_party/polymer/components/paper-spinner/
Dpaper-spinner.css21 * should rotate each time, 216 gives us a
43 -webkit-animation: container-rotate 1568ms linear infinite;
44 animation: container-rotate 1568ms linear infinite;
47 @-webkit-keyframes container-rotate {
48 to { -webkit-transform: rotate(360deg) }
51 @keyframes container-rotate {
52 to { transform: rotate(360deg) }
93 …-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both, blue-fa…
94 …animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both, blue-fade-in-ou…
99 …-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both, red-fad…
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp30 Iter r = std::rotate(Iter(ia), Iter(ia), Iter(ia)); in test()
33 r = std::rotate(Iter(ia), Iter(ia), Iter(ia+sa)); in test()
36 r = std::rotate(Iter(ia), Iter(ia+sa), Iter(ia+sa)); in test()
42 r = std::rotate(Iter(ib), Iter(ib), Iter(ib+sb)); in test()
46 r = std::rotate(Iter(ib), Iter(ib+1), Iter(ib+sb)); in test()
50 r = std::rotate(Iter(ib), Iter(ib+sb), Iter(ib+sb)); in test()
57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test()
62 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test()
67 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc)); in test()
72 r = std::rotate(Iter(ic), Iter(ic+sc), Iter(ic+sc)); in test()
[all …]
/external/skia/gm/
Dtextblobtransforms.cpp93 canvas->rotate(180.f); in onDraw()
95 canvas->rotate(-180.f); in onDraw()
97 canvas->rotate(-180.f); in onDraw()
99 canvas->rotate(270.f); in onDraw()
101 canvas->rotate(-90.f); in onDraw()
103 canvas->rotate(-90.f); in onDraw()
105 canvas->rotate(90.f); in onDraw()
120 canvas->rotate(23.f); in onDraw()
124 canvas->rotate(-46.f); in onDraw()
129 canvas->rotate(46.f); in onDraw()
[all …]
/external/llvm/include/llvm/ADT/
DHashing.h171 inline uint64_t rotate(uint64_t val, size_t shift) { in rotate() function
208 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes()
216 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, in hash_17to32_bytes()
217 a + rotate(b ^ k3, 20) - c + len + seed); in hash_17to32_bytes()
223 uint64_t b = rotate(a + z, 52); in hash_33to64_bytes()
224 uint64_t c = rotate(a, 37); in hash_33to64_bytes()
226 c += rotate(a, 7); in hash_33to64_bytes()
229 uint64_t vs = b + rotate(a, 31) + c; in hash_33to64_bytes()
232 b = rotate(a + z, 52); in hash_33to64_bytes()
233 c = rotate(a, 37); in hash_33to64_bytes()
[all …]
/external/llvm/test/CodeGen/NVPTX/
Drotate.ll5 declare i32 @llvm.nvvm.rotate.b32(i32, i32)
6 declare i64 @llvm.nvvm.rotate.b64(i64, i32)
7 declare i64 @llvm.nvvm.rotate.right.b64(i64, i32)
17 %val = tail call i32 @llvm.nvvm.rotate.b32(i32 %a, i32 %b)
30 %val = tail call i64 @llvm.nvvm.rotate.b64(i64 %a, i32 %b)
43 %val = tail call i64 @llvm.nvvm.rotate.right.b64(i64 %a, i32 %b)
/external/skia/samplecode/
DSampleClock.cpp42 canvas->rotate(-180.f/2.f); in onDrawContent()
62 canvas->rotate(180.f/6.f); in onDrawContent()
88 canvas->rotate(180.f/30.f); in onDrawContent()
99 canvas->rotate(180.f/30.f); in onDrawContent()
110 canvas->rotate(time.fHour*(180.f/6.f) + time.fMinute*(180.f/360.f) in onDrawContent()
131 canvas->rotate(time.fMinute*(180.f/30.f) in onDrawContent()
152 canvas->rotate(time.fSecond*(180.f/30.f)); in onDrawContent()
DSampleManyRects.cpp52 SkMatrix rotate; in onDrawContent() local
53 rotate.setRotate(fRandom.nextUScalar1() * 360, in onDrawContent()
56 canvas->concat(rotate); in onDrawContent()
DSampleCircle.cpp91 static void rotate(SkCanvas* canvas, SkScalar angle, SkScalar px, SkScalar py) { in rotate() function in CircleView
93 canvas->rotate(angle); in rotate()
110 canvas->rotate(SkIntToScalar(10) * (n - 3)); in onDrawContent()
/external/eigen/demos/opengl/
DREADME3 left button: rotate around the target
5 left button + ctrl quake rotate (rotate around camera position)
/external/freetype/src/base/
Dftstroke.c531 FT_Angle total, angle, step, rotate, next, theta; in ft_stroke_border_arcto() local
544 rotate = ( angle_diff >= 0 ) ? FT_ANGLE_PI2 : -FT_ANGLE_PI2; in ft_stroke_border_arcto()
571 FT_Vector_From_Polar( &a2, length, angle + rotate ); in ft_stroke_border_arcto()
575 FT_Vector_From_Polar( &b2, length, next - rotate ); in ft_stroke_border_arcto()
885 FT_Angle total, rotate; in ft_stroker_arcto() local
891 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto()
895 total = -rotate * 2; in ft_stroker_arcto()
900 stroker->angle_in + rotate, in ft_stroker_arcto()
928 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap() local
933 FT_Vector_From_Polar( &delta2, radius, angle + rotate ); in ft_stroker_cap()
[all …]
/external/pdfium/third_party/freetype/src/base/
Dftstroke.c541 FT_Angle total, angle, step, rotate, next, theta; in ft_stroke_border_arcto() local
554 rotate = ( angle_diff >= 0 ) ? FT_ANGLE_PI2 : -FT_ANGLE_PI2; in ft_stroke_border_arcto()
581 FT_Vector_From_Polar( &a2, length, angle + rotate ); in ft_stroke_border_arcto()
585 FT_Vector_From_Polar( &b2, length, next - rotate ); in ft_stroke_border_arcto()
895 FT_Angle total, rotate; in ft_stroker_arcto() local
901 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto()
905 total = -rotate * 2; in ft_stroker_arcto()
910 stroker->angle_in + rotate, in ft_stroker_arcto()
938 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap() local
943 FT_Vector_From_Polar( &delta2, radius, angle + rotate ); in ft_stroker_cap()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DAnimationSetTest.java33 Animation rotate = new RotateAnimation(1f, 2f); in testAnimationList() local
36 set.addAnimation(rotate); in testAnimationList()
42 assertThat(list.get(2), sameInstance(rotate)); in testAnimationList()
/external/eigen/test/eigen2/
Deigen2_geometry_with_eigen2_prefix.cpp175 t0.setIdentity(); t0.scale(v0).rotate(q1.toRotationMatrix()); in geometry()
176 t1.setIdentity(); t1.scale(v0).rotate(q1); in geometry()
179 t0.setIdentity(); t0.scale(v0).rotate(AngleAxisx(q1)); in geometry()
201 t4.rotate(AngleAxisx(-a3,v3)); in geometry()
255 t0.rotate(q1).scale(v0).translate(v0); in geometry()
273 t0.scale(v0).translate(v0).rotate(q1); in geometry()
291 t0.rotate(q1); in geometry()
296 t0.translate(v1).rotate(q1); in geometry()
301 t0.scale(v1).rotate(q1); in geometry()
311 t0.rotate(q1).translate(v1); in geometry()
[all …]
Deigen2_geometry.cpp173 t0.setIdentity(); t0.scale(v0).rotate(q1.toRotationMatrix()); in geometry()
174 t1.setIdentity(); t1.scale(v0).rotate(q1); in geometry()
177 t0.setIdentity(); t0.scale(v0).rotate(AngleAxisx(q1)); in geometry()
199 t4.rotate(AngleAxisx(-a3,v3)); in geometry()
253 t0.rotate(q1).scale(v0).translate(v0); in geometry()
271 t0.scale(v0).translate(v0).rotate(q1); in geometry()
289 t0.rotate(q1); in geometry()
294 t0.translate(v1).rotate(q1); in geometry()
299 t0.scale(v1).rotate(q1); in geometry()
309 t0.rotate(q1).translate(v1); in geometry()
[all …]
/external/squashfs-tools/squashfs-tools/
Dprogressbar.c47 int rotate = 0; variable
71 rotate = (rotate + 1) % 4; in sigalrm_handler()
130 putchar(rotate_list[rotate]); in progress_bar()
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_query.c45 uint8_t rotate; member
111 q->rotate = 32; in nvc0_query_create()
145 if (q->rotate) { in nvc0_query_create()
147 q->offset -= q->rotate; in nvc0_query_create()
148 q->data -= q->rotate / sizeof(*q->data); in nvc0_query_create()
174 q->offset += q->rotate; in nvc0_query_rotate()
175 q->data += q->rotate / sizeof(*q->data); in nvc0_query_rotate()
191 if (q->rotate) { in nvc0_query_begin()
261 if (q->rotate) in nvc0_query_end()
/external/vulkan-validation-layers/libs/glm/gtx/
Drotate_vector.hpp58 GLM_FUNC_DECL detail::tvec2<T, P> rotate(
65 GLM_FUNC_DECL detail::tvec3<T, P> rotate(
73 GLM_FUNC_DECL detail::tvec4<T, P> rotate(
/external/v8/src/arm64/
Dinstructions-arm64.cc66 unsigned int rotate, in RotateRight() argument
69 rotate &= 63; in RotateRight()
70 return ((value & ((1UL << rotate) - 1UL)) << (width - rotate)) | in RotateRight()
71 (value >> rotate); in RotateRight()
/external/chromium-trace/catapult/devil/devil/android/tools/
Dvideo_recorder.py30 rotate=False): argument
47 self._rotate = rotate
147 device, megabits_per_second=args.bitrate, size=size, rotate=args.rotate)
/external/pdfium/fpdfsdk/src/fpdfxfa/
Dfpdfxfa_page.cpp178 int rotate, in DeviceToPage() argument
192 GetDisplayMatrix(page2device, start_x, start_y, size_x, size_y, rotate); in DeviceToPage()
206 int rotate, in PageToDevice() argument
217 GetDisplayMatrix(page2device, start_x, start_y, size_x, size_y, rotate); in PageToDevice()
/external/skia/experimental/SkV8Example/js/
Dgears.js91 ctx.rotate(angle);
94 ctx.rotate(-angle);
96 ctx.rotate(angle);
108 ctx.rotate(-angle);
/external/eigen/test/
Dgeo_transformations.cpp187 t0.setIdentity(); t0.scale(v0).rotate(q1.toRotationMatrix()); in transformations()
188 t1.setIdentity(); t1.scale(v0).rotate(q1); in transformations()
191 t0.setIdentity(); t0.scale(v0).rotate(AngleAxisx(q1)); in transformations()
214 t4.rotate(AngleAxisx(-a3,v3)); in transformations()
268 t0.rotate(q1).scale(v0).translate(v0); in transformations()
315 t0.scale(v0).translate(v0).rotate(q1); in transformations()
333 t0.rotate(q1); in transformations()
338 t0.translate(v1).rotate(q1); in transformations()
343 t0.scale(v1).rotate(q1); in transformations()
353 t0.rotate(q1).translate(v1); in transformations()
[all …]
/external/skia/bench/
DRotatedRectBench.cpp92 SkMatrix rotate; in onDraw() local
94 rotate.setRotate(30.f, kRectW / 2, kRectH / 2); in onDraw()
95 SkMatrix m = rotate; in onDraw()
118 m.postConcat(rotate); in onDraw()
/external/llvm/test/Transforms/LoopSimplify/
Dmerge-exits.ll1 ; RUN: opt < %s -loop-simplify -loop-rotate -instcombine -indvars -S -verify-loop-info -verify-dom-…
4 ; into one, so that loop rotate can rotate the loop, so
/external/v8/src/arm/
Dassembler-arm.cc1834 void Assembler::sxtb(Register dst, Register src, int rotate, Condition cond) { in sxtb() argument
1840 DCHECK(rotate == 0 || rotate == 8 || rotate == 16 || rotate == 24); in sxtb()
1842 ((rotate >> 1) & 0xC) * B8 | 7 * B4 | src.code()); in sxtb()
1846 void Assembler::sxtab(Register dst, Register src1, Register src2, int rotate, in sxtab() argument
1854 DCHECK(rotate == 0 || rotate == 8 || rotate == 16 || rotate == 24); in sxtab()
1856 ((rotate >> 1) & 0xC) * B8 | 7 * B4 | src2.code()); in sxtab()
1860 void Assembler::sxth(Register dst, Register src, int rotate, Condition cond) { in sxth() argument
1866 DCHECK(rotate == 0 || rotate == 8 || rotate == 16 || rotate == 24); in sxth()
1868 ((rotate >> 1) & 0xC) * B8 | 7 * B4 | src.code()); in sxth()
1872 void Assembler::sxtah(Register dst, Register src1, Register src2, int rotate, in sxtah() argument
[all …]

1234567891011