Searched refs:rotate (Results 1 – 10 of 10) sorted by relevance
2 -- dqRotate.decTest -- rotate decQuad coefficient left or right --30 dqrot001 rotate 0 0 -> 031 dqrot002 rotate 0 2 -> 032 dqrot003 rotate 1 2 -> 10033 dqrot004 rotate 1 33 -> 100000000000000000000000000000000034 dqrot005 rotate 1 34 -> 135 dqrot006 rotate 1 -1 -> 100000000000000000000000000000000036 dqrot007 rotate 0 -2 -> 037 dqrot008 rotate 1234567890123456789012345678901234 -1 -> 412345678901234567890123456789012338 dqrot009 rotate 1234567890123456789012345678901234 -33 -> 2345678901234567890123456789012341[all …]
2 -- ddRotate.decTest -- rotate a decDouble coefficient left or right --30 ddrot001 rotate 0 0 -> 031 ddrot002 rotate 0 2 -> 032 ddrot003 rotate 1 2 -> 10033 ddrot004 rotate 1 15 -> 100000000000000034 ddrot005 rotate 1 16 -> 135 ddrot006 rotate 1 -1 -> 100000000000000036 ddrot007 rotate 0 -2 -> 037 ddrot008 rotate 1234567890123456 -1 -> 612345678901234538 ddrot009 rotate 1234567890123456 -15 -> 2345678901234561[all …]
2 -- rotate.decTest -- rotate coefficient left or right --29 rotx001 rotate 0 0 -> 030 rotx002 rotate 0 2 -> 031 rotx003 rotate 1 2 -> 10032 rotx004 rotate 34 8 -> 40000000333 rotx005 rotate 1 9 -> 134 rotx006 rotate 1 -1 -> 10000000035 rotx007 rotate 123456789 -1 -> 91234567836 rotx008 rotate 123456789 -8 -> 23456789137 rotx009 rotate 123456789 -9 -> 123456789[all …]
66 dectest: rotate
189 -- Issue #7233: rotate and scale should truncate an argument192 extr1600 rotate 1234567 -5 -> NaN Invalid_operation193 extr1601 rotate 1234567 -4 -> 4567194 extr1602 rotate 1234567 -3 -> 5674195 extr1603 rotate 1234567 -2 -> 6745196 extr1604 rotate 1234567 -1 -> 7456197 extr1605 rotate 1234567 0 -> 4567198 extr1606 rotate 1234567 1 -> 5674199 extr1607 rotate 1234567 2 -> 6745200 extr1608 rotate 1234567 3 -> 7456[all …]
67 int rotate; in RotatingTree_Get() local73 rotate = !randombits(1); in RotatingTree_Get()78 if (rotate) { in RotatingTree_Get()90 if (rotate) { in RotatingTree_Get()
144 d.rotate(-1)145 d.rotate(1)256 d.rotate(1) # verify rot(1)260 d.rotate(-1) # verify rot(-1)262 d.rotate() # check default to 1268 d.rotate(i) # check vs. rot(1) n times270 e.rotate(1)272 d.rotate(-i) # check that it works in reverse274 e.rotate(n-i) # check that it wraps forward280 d.rotate(-i)[all …]
1636 self.assertEqual(Decimal(123).rotate(1),1637 Decimal(123).rotate(Decimal(1)))2127 d = c.rotate(Decimal(1), Decimal(2))2128 self.assertEqual(c.rotate(1, 2), d)2129 self.assertEqual(c.rotate(Decimal(1), 2), d)2130 self.assertEqual(c.rotate(1, Decimal(2)), d)2131 self.assertRaises(TypeError, c.rotate, '1', 2)2132 self.assertRaises(TypeError, c.rotate, 1, '2')
75 …// BSP needs to be first entry in table. Check before boot. If BSP non zero need to rotate the ent…
3504 def rotate(self, other, context=None): member in Decimal5155 def rotate(self, a, b): member in Context5182 return a.rotate(b, context=self)