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

1 2 34 5 6

  /art/tools/ahat/etc/
hprofdump.py 141 s, ms = divmod(timestamp, 1000)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 119 /* Compute Python divmod(x, y), returning the quotient and storing the
125 * the overflow case impossible (divmod(LONG_MIN, -1) is the only
129 divmod(int x, int y, int *r) function
445 const int num_hi = divmod(*lo, factor, lo);
849 result = divmod(ss, 60, &ss);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py     [all...]
rfc822.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
string_tests.py 144 i, m = divmod(i, base)
154 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
201 i, m = divmod(i, base)
245 i, m = divmod(i, base)
    [all...]
test_generators.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 119 /* Compute Python divmod(x, y), returning the quotient and storing the
125 * the overflow case impossible (divmod(LONG_MIN, -1) is the only
129 divmod(int x, int y, int *r) function
445 const int num_hi = divmod(*lo, factor, lo);
849 result = divmod(ss, 60, &ss);
    [all...]
  /external/python/cpython2/Lib/
_pyio.py     [all...]
sunau.py 146 d, m = divmod(x, 256)
rfc822.py     [all...]
  /external/python/cpython2/Lib/test/
string_tests.py 145 i, m = divmod(i, base)
155 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
202 i, m = divmod(i, base)
246 i, m = divmod(i, base)
    [all...]
test_generators.py     [all...]
regrtest.py 275 seconds, ms = divmod(ms, 1000)
276 minutes, seconds = divmod(seconds, 60)
277 hours, minutes = divmod(minutes, 60)
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 119 /* Compute Python divmod(x, y), returning the quotient and storing the
125 * the overflow case impossible (divmod(LONG_MIN, -1) is the only
129 divmod(int x, int y, int *r) function
445 const int num_hi = divmod(*lo, factor, lo);
849 result = divmod(ss, 60, &ss);
    [all...]
  /external/python/cpython2/Tools/scripts/
pindent.py 156 tabs, spaces = divmod(indent*self.indentsize, self.tabsize)
  /external/python/cpython3/Lib/test/
string_tests.py 142 i, m = divmod(i, base)
151 r2, rem = divmod(n - len(i.replace(j, self.fixtype(''))),
203 i, m = divmod(i, base)
250 i, m = divmod(i, base)
    [all...]
test_call.py 337 (divmod, (1000, 33), (30, 10)),
test_decimal.py 868 return 'divmod ' + str(other)
    [all...]
test_complex.py 168 self.assertRaises(TypeError, divmod, 1+1j, 1+0j)
169 self.assertRaises(TypeError, divmod, 1+1j, 0+0j)
test_long.py 104 q, r = divmod(a, b)
158 q, r = divmod(x, y)
162 eq(q, q2, "divmod returns different quotient than /")
163 eq(r, r2, "divmod returns different mod than %")
164 eq(x, q*y + r, "x != q*y + r after divmod")
166 self.assertTrue(0 <= r < y, "bad mod from divmod")
168 self.assertTrue(y < r <= 0, "bad mod from divmod")
299 x, r = divmod(x, base)
    [all...]
  /external/python/cpython3/Tools/scripts/
pindent.py 154 tabs, spaces = divmod(indent*self.indentsize, self.tabsize)
  /external/python/cpython3/Lib/
_pydecimal.py 4414 def divmod(self, a, b): member in class:Context
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 585 return divmod(val, 256)
742 hi, lo = divmod(argc, 256)
  /external/python/cpython2/Lib/compiler/
pyassem.py 585 return divmod(val, 256)
742 hi, lo = divmod(argc, 256)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pindent.py 156 tabs, spaces = divmod(indent*self.indentsize, self.tabsize)

Completed in 936 milliseconds

1 2 34 5 6