HomeSort by relevance Sort by last modified time
    Searched refs:divmod (Results 26 - 50 of 146) sorted by null

12 3 4 5 6

  /external/autotest/client/site_tests/hardware_TPMTakeOwnership/
hardware_TPMTakeOwnership.py 128 sec, ms = divmod(v/1000, 1000)
  /external/catch2/scripts/
benchmarkCompile.py 10 mid, odd = divmod(len(lst), 2)
  /external/python/cpython3/Lib/email/
_encoded_words.py 142 groups_of_3, leftover = divmod(len(bstring), 3)
  /external/python/cpython3/Lib/unittest/test/testmock/
testmagicmethods.py 439 self.assertIsInstance(divmod(5, m), MagicMock)
441 self.assertEqual(divmod(m, 2), (2, 1))
443 foo = divmod(2, m)
447 bar = divmod(m, 2)
  /external/python/cpython3/Modules/_decimal/libmpdec/literature/
fnt.py 70 q, control = divmod(p-1, f)
  /external/python/mock/mock/tests/
testmagicmethods.py 504 self.assertIsInstance(divmod(5, m), MagicMock)
506 self.assertEqual(divmod(m, 2), (2, 1))
508 foo = divmod(2, m)
512 bar = divmod(m, 2)
  /external/python/cpython2/Lib/plat-irix5/
readcd.py 72 min, block = divmod(block, 75*60)
73 sec, frame = divmod(block, 75)
  /external/python/cpython2/Lib/plat-irix6/
readcd.py 72 min, block = divmod(block, 75*60)
73 sec, frame = divmod(block, 75)
  /external/python/cpython2/Lib/test/
test_strtod.py 57 q, r = divmod(a, b)
157 e, m = divmod(bits, 2**52)
test_long_future.py 43 q, r = divmod(a, b)
  /external/python/cpython3/Lib/test/
test_strtod.py 56 q, r = divmod(a, b)
156 e, m = divmod(bits, 2**52)
test_binop.py 177 return divmod(other, self)
181 return divmod(self, other)[1]
185 return divmod(other, self)[1]
300 # XXX Ran out of steam; TO DO: divmod, div, future division
test_class.py 23 "divmod",
216 divmod(testme,1)
220 divmod(1, testme)
  /external/python/dateutil/dateutil/
relativedelta.py 220 div, mod = divmod(self.microseconds * s, 1000000)
225 div, mod = divmod(self.seconds * s, 60)
230 div, mod = divmod(self.minutes * s, 60)
235 div, mod = divmod(self.hours * s, 24)
240 div, mod = divmod(self.months * s, 12)
262 div, mod = divmod(self.months * s, 12)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
test_decimal.py 636 return 'divmod ' + str(other)
652 self.assertEqual(divmod(E(), Decimal(10)), 'divmod 10')
653 self.assertEqual(divmod(Decimal(10), E()), '10 rdivmod')
    [all...]
test_long_future.py 43 q, r = divmod(a, b)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 37 mins, secs = divmod(dt, 60)
rcslib.py 279 detail, reason = divmod(sts, 256)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
utils.py 158 hours, minutes = divmod(abs(offset), 3600)
  /external/python/cpython2/Demo/pdist/
cmptree.py 37 mins, secs = divmod(dt, 60)
rcslib.py 279 detail, reason = divmod(sts, 256)
  /external/python/cpython2/Lib/email/
utils.py 158 hours, minutes = divmod(abs(offset), 3600)
  /external/python/cpython2/Lib/plat-mac/
MiniAEFrame.py 174 x, c = divmod(x, 256)
  /external/python/cpython3/Modules/_decimal/tests/
randfloat.py 62 e, m = divmod(bits, 2**52)

Completed in 665 milliseconds

12 3 4 5 6