Lines Matching refs:accumulator
56 Xsig accumulator, Denom, argSignif; in poly_2xm1() local
93 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_2xm1()
94 polynomial_Xsig(&accumulator, &Xll, lterms, HIPOWER - 1); in poly_2xm1()
95 mul_Xsig_Xsig(&accumulator, &argSignif); in poly_2xm1()
96 shr_Xsig(&accumulator, 3); in poly_2xm1()
99 add_two_Xsig(&accumulator, &argSignif, &exponent); in poly_2xm1()
105 shr_Xsig(&accumulator, -exponent); in poly_2xm1()
106 accumulator.msw |= 0x80000000; /* add 1.0 */ in poly_2xm1()
107 mul_Xsig_Xsig(&accumulator, shiftterm[shift]); in poly_2xm1()
108 accumulator.msw &= 0x3fffffff; /* subtract 1.0 */ in poly_2xm1()
116 Denom.lsw = accumulator.lsw; in poly_2xm1()
117 XSIG_LL(Denom) = XSIG_LL(accumulator); in poly_2xm1()
128 div_Xsig(&accumulator, &Denom, &accumulator); in poly_2xm1()
132 exponent += round_Xsig(&accumulator); in poly_2xm1()
135 significand(result) = XSIG_LL(accumulator); in poly_2xm1()