Lines Matching refs:yc
2112 yc, ye = y.int, y.exp
2113 while yc % 10 == 0:
2114 yc //= 10
2120 xe *= yc
2179 e = _decimal_lshift_exact(e * yc, ye)
2180 xe = _decimal_lshift_exact(xe * yc, ye)
2206 e = _decimal_lshift_exact(e * yc, ye)
2207 xe = _decimal_lshift_exact(xe * yc, ye)
2224 m, n = yc*10**ye, 1
2226 if xe != 0 and len(str(abs(yc*xe))) <= -ye:
2229 if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye:
2231 m, n = yc, 10**(-ye)
2434 yc, ye = y.int, y.exp
2436 yc = -yc
2442 coeff, exp = _dpower(xc, xe, yc, ye, p+extra)
5958 def _dpower(xc, xe, yc, ye, p): argument
5974 b = len(str(abs(yc))) + ye
5982 pc = lxc*yc*10**shift
5984 pc = _div_nearest(lxc*yc, 10**-shift)
5989 if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1: