Lines Matching refs:divmod
1366 coeff, remainder = divmod(op1.int * 10**shift, op2.int)
1368 coeff, remainder = divmod(op1.int, op2.int * 10**-shift)
1406 q, r = divmod(op1.int, op2.int)
1555 q, r = divmod(op1.int, op2.int)
2196 xc, remainder = divmod(5**e, xc)
2249 xe, rem = divmod(xe, n)
2256 q, r = divmod(xc, a**(n-1))
2779 c, remainder = divmod(c, 100**-shift)
4418 def divmod(self, a, b): member in Context
5721 q, r = divmod(a, b)
5952 quot, rem = divmod(cshift, _log10_digits(q))