Lines Matching refs:yc
2000 yc, ye = y.int, y.exp
2001 while yc % 10 == 0:
2002 yc //= 10
2008 xe *= yc
2067 e = _decimal_lshift_exact(e * yc, ye)
2068 xe = _decimal_lshift_exact(xe * yc, ye)
2094 e = _decimal_lshift_exact(e * yc, ye)
2095 xe = _decimal_lshift_exact(xe * yc, ye)
2112 m, n = yc*10**ye, 1
2114 if xe != 0 and len(str(abs(yc*xe))) <= -ye:
2117 if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye:
2119 m, n = yc, 10**(-ye)
2322 yc, ye = y.int, y.exp
2324 yc = -yc
2330 coeff, exp = _dpower(xc, xe, yc, ye, p+extra)
5802 def _dpower(xc, xe, yc, ye, p): argument
5818 b = len(str(abs(yc))) + ye
5826 pc = lxc*yc*10**shift
5828 pc = _div_nearest(lxc*yc, 10**-shift)
5833 if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1: