/external/python/cpython3/Lib/test/decimaltestdata/ |
D | dqRotate.decTest | 2 -- dqRotate.decTest -- rotate decQuad coefficient left or right -- 30 dqrot001 rotate 0 0 -> 0 31 dqrot002 rotate 0 2 -> 0 32 dqrot003 rotate 1 2 -> 100 33 dqrot004 rotate 1 33 -> 1000000000000000000000000000000000 34 dqrot005 rotate 1 34 -> 1 35 dqrot006 rotate 1 -1 -> 1000000000000000000000000000000000 36 dqrot007 rotate 0 -2 -> 0 37 dqrot008 rotate 1234567890123456789012345678901234 -1 -> 4123456789012345678901234567890123 38 dqrot009 rotate 1234567890123456789012345678901234 -33 -> 2345678901234567890123456789012341 [all …]
|
D | ddRotate.decTest | 2 -- ddRotate.decTest -- rotate a decDouble coefficient left or right -- 30 ddrot001 rotate 0 0 -> 0 31 ddrot002 rotate 0 2 -> 0 32 ddrot003 rotate 1 2 -> 100 33 ddrot004 rotate 1 15 -> 1000000000000000 34 ddrot005 rotate 1 16 -> 1 35 ddrot006 rotate 1 -1 -> 1000000000000000 36 ddrot007 rotate 0 -2 -> 0 37 ddrot008 rotate 1234567890123456 -1 -> 6123456789012345 38 ddrot009 rotate 1234567890123456 -15 -> 2345678901234561 [all …]
|
D | rotate.decTest | 2 -- rotate.decTest -- rotate coefficient left or right -- 29 rotx001 rotate 0 0 -> 0 30 rotx002 rotate 0 2 -> 0 31 rotx003 rotate 1 2 -> 100 32 rotx004 rotate 34 8 -> 400000003 33 rotx005 rotate 1 9 -> 1 34 rotx006 rotate 1 -1 -> 100000000 35 rotx007 rotate 123456789 -1 -> 912345678 36 rotx008 rotate 123456789 -8 -> 234567891 37 rotx009 rotate 123456789 -9 -> 123456789 [all …]
|
/external/python/cpython2/Lib/test/decimaltestdata/ |
D | dqRotate.decTest | 2 -- dqRotate.decTest -- rotate decQuad coefficient left or right -- 30 dqrot001 rotate 0 0 -> 0 31 dqrot002 rotate 0 2 -> 0 32 dqrot003 rotate 1 2 -> 100 33 dqrot004 rotate 1 33 -> 1000000000000000000000000000000000 34 dqrot005 rotate 1 34 -> 1 35 dqrot006 rotate 1 -1 -> 1000000000000000000000000000000000 36 dqrot007 rotate 0 -2 -> 0 37 dqrot008 rotate 1234567890123456789012345678901234 -1 -> 4123456789012345678901234567890123 38 dqrot009 rotate 1234567890123456789012345678901234 -33 -> 2345678901234567890123456789012341 [all …]
|
D | ddRotate.decTest | 2 -- ddRotate.decTest -- rotate a decDouble coefficient left or right -- 30 ddrot001 rotate 0 0 -> 0 31 ddrot002 rotate 0 2 -> 0 32 ddrot003 rotate 1 2 -> 100 33 ddrot004 rotate 1 15 -> 1000000000000000 34 ddrot005 rotate 1 16 -> 1 35 ddrot006 rotate 1 -1 -> 1000000000000000 36 ddrot007 rotate 0 -2 -> 0 37 ddrot008 rotate 1234567890123456 -1 -> 6123456789012345 38 ddrot009 rotate 1234567890123456 -15 -> 2345678901234561 [all …]
|
D | rotate.decTest | 2 -- rotate.decTest -- rotate coefficient left or right -- 29 rotx001 rotate 0 0 -> 0 30 rotx002 rotate 0 2 -> 0 31 rotx003 rotate 1 2 -> 100 32 rotx004 rotate 34 8 -> 400000003 33 rotx005 rotate 1 9 -> 1 34 rotx006 rotate 1 -1 -> 100000000 35 rotx007 rotate 123456789 -1 -> 912345678 36 rotx008 rotate 123456789 -8 -> 234567891 37 rotx009 rotate 123456789 -9 -> 123456789 [all …]
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/ |
D | rotate.pass.cpp | 29 Iter r = std::rotate(Iter(ia), Iter(ia), Iter(ia)); in test() 32 r = std::rotate(Iter(ia), Iter(ia), Iter(ia+sa)); in test() 35 r = std::rotate(Iter(ia), Iter(ia+sa), Iter(ia+sa)); in test() 41 r = std::rotate(Iter(ib), Iter(ib), Iter(ib+sb)); in test() 45 r = std::rotate(Iter(ib), Iter(ib+1), Iter(ib+sb)); in test() 49 r = std::rotate(Iter(ib), Iter(ib+sb), Iter(ib+sb)); in test() 56 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test() 61 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test() 66 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc)); in test() 71 r = std::rotate(Iter(ic), Iter(ic+sc), Iter(ic+sc)); in test() [all …]
|
/external/skqp/gm/ |
D | textblobtransforms.cpp | 93 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 …]
|
D | localmatriximageshader.cpp | 28 SkMatrix rotate; variable 29 rotate.setRotate(45.0f); 31 sk_sp<SkShader> redLocalMatrixShader = redImageShader->makeWithLocalMatrix(rotate); 39 sk_sp<SkShader> blueImageShader = blueImage->makeShader(&rotate);
|
/external/skia/gm/ |
D | textblobtransforms.cpp | 93 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 …]
|
D | localmatriximageshader.cpp | 28 SkMatrix rotate; variable 29 rotate.setRotate(45.0f); 31 sk_sp<SkShader> redLocalMatrixShader = redImageShader->makeWithLocalMatrix(rotate); 39 sk_sp<SkShader> blueImageShader = blueImage->makeShader(&rotate);
|
D | dashcircle.cpp | 72 canvas->rotate(fRotation); in onDraw() 87 canvas->rotate(fRotation); in onDraw() 163 SkMatrix rotate; in onDraw() local 164 rotate.setRotate(25.f); in onDraw() 171 rotate, in onDraw() 173 SkMatrix::Concat(SkMatrix::MakeAll(-1, 0, 0, 0, 1, 0, 0, 0, 1), rotate), in onDraw() 174 rotate) in onDraw()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | Hashing.h | 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(a, 31) + c; in hash_33to64_bytes() 231 b = rotate(a + z, 52); in hash_33to64_bytes() 232 c = rotate(a, 37); in hash_33to64_bytes() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | Hashing.h | 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(a, 31) + c; in hash_33to64_bytes() 231 b = rotate(a + z, 52); in hash_33to64_bytes() 232 c = rotate(a, 37); in hash_33to64_bytes() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Hashing.h | 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(a, 31) + c; in hash_33to64_bytes() 231 b = rotate(a + z, 52); in hash_33to64_bytes() 232 c = rotate(a, 37); in hash_33to64_bytes() [all …]
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_page.cpp | 51 int rotate = GetPageRotation(); in CPDF_Page() local 52 if (rotate % 2) in CPDF_Page() 55 switch (rotate) { in CPDF_Page() 182 int rotate = pRotate ? (pRotate->GetInteger() / 90) % 4 : 0; in GetPageRotation() local 183 return (rotate < 0) ? (rotate + 4) : rotate; in GetPageRotation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/ |
D | rotate.ll | 5 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/llvm/test/CodeGen/NVPTX/ |
D | rotate.ll | 5 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/ |
D | SampleClock.cpp | 41 canvas->rotate(-180.f/2.f); in onDrawContent() 61 canvas->rotate(180.f/6.f); in onDrawContent() 87 canvas->rotate(180.f/30.f); in onDrawContent() 98 canvas->rotate(180.f/30.f); in onDrawContent() 109 canvas->rotate(time.fHour*(180.f/6.f) + time.fMinute*(180.f/360.f) in onDrawContent() 130 canvas->rotate(time.fMinute*(180.f/30.f) in onDrawContent() 151 canvas->rotate(time.fSecond*(180.f/30.f)); in onDrawContent()
|
/external/skqp/samplecode/ |
D | SampleClock.cpp | 41 canvas->rotate(-180.f/2.f); in onDrawContent() 61 canvas->rotate(180.f/6.f); in onDrawContent() 87 canvas->rotate(180.f/30.f); in onDrawContent() 98 canvas->rotate(180.f/30.f); in onDrawContent() 109 canvas->rotate(time.fHour*(180.f/6.f) + time.fMinute*(180.f/360.f) in onDrawContent() 130 canvas->rotate(time.fMinute*(180.f/30.f) in onDrawContent() 151 canvas->rotate(time.fSecond*(180.f/30.f)); in onDrawContent()
|
/external/freetype/src/tools/ |
D | test_trig.c | 193 int rotate; in test_rotate() local 196 for ( rotate = 0; rotate < FT_ANGLE_2PI; rotate += 0x10000L ) in test_rotate() 202 ra = rotate*SPI; in test_rotate() 222 FT_Vector_Rotate( &v, rotate ); in test_rotate()
|
/external/freetype/src/base/ |
D | ftstroke.c | 536 FT_Angle total, angle, step, rotate, next, theta; in ft_stroke_border_arcto() local 549 rotate = ( angle_diff >= 0 ) ? FT_ANGLE_PI2 : -FT_ANGLE_PI2; in ft_stroke_border_arcto() 576 FT_Vector_From_Polar( &a2, length, angle + rotate ); in ft_stroke_border_arcto() 580 FT_Vector_From_Polar( &b2, length, next - rotate ); in ft_stroke_border_arcto() 891 FT_Angle total, rotate; in ft_stroker_arcto() local 897 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto() 901 total = -rotate * 2; in ft_stroker_arcto() 906 stroker->angle_in + rotate, in ft_stroker_arcto() 934 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap() local 939 FT_Vector_From_Polar( &delta2, radius, angle + rotate ); in ft_stroker_cap() [all …]
|
/external/python/cpython2/Modules/ |
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()
|
/external/python/cpython3/Modules/ |
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()
|
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/ |
D | struct_1.ll | 30 ; unsigned char c1; // offset 0 (rotate left by 13 bytes to byte 3) 31 ; unsigned char c2; // offset 1 (rotate left by 14 bytes to byte 3) 32 ; unsigned char c3; // offset 2 (rotate left by 15 bytes to byte 3) 33 ; int i1; // offset 4 (rotate left by 4 bytes to byte 0) 34 ; short s1; // offset 8 (rotate left by 6 bytes to byte 2) 38 ; unsigned char c6; // offset 18 (rotate left by 14 bytes to byte 3) 39 ; unsigned char c7; // offset 19 (no rotate, in preferred slot) 43 ; int i6; // offset 32 (no rotate, in preferred slot)
|