Lines Matching refs:accumulator
57 Xsig accumulator, Denom, argSignif; in poly_2xm1() local
94 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_2xm1()
95 polynomial_Xsig(&accumulator, &Xll, lterms, HIPOWER - 1); in poly_2xm1()
96 mul_Xsig_Xsig(&accumulator, &argSignif); in poly_2xm1()
97 shr_Xsig(&accumulator, 3); in poly_2xm1()
100 add_two_Xsig(&accumulator, &argSignif, &exponent); in poly_2xm1()
106 shr_Xsig(&accumulator, -exponent); in poly_2xm1()
107 accumulator.msw |= 0x80000000; /* add 1.0 */ in poly_2xm1()
108 mul_Xsig_Xsig(&accumulator, shiftterm[shift]); in poly_2xm1()
109 accumulator.msw &= 0x3fffffff; /* subtract 1.0 */ in poly_2xm1()
117 Denom.lsw = accumulator.lsw; in poly_2xm1()
118 XSIG_LL(Denom) = XSIG_LL(accumulator); in poly_2xm1()
129 div_Xsig(&accumulator, &Denom, &accumulator); in poly_2xm1()
133 exponent += round_Xsig(&accumulator); in poly_2xm1()
136 significand(result) = XSIG_LL(accumulator); in poly_2xm1()