Lines Matching refs:argSq
58 Xsig accumulator, Numer, Denom, accumulatore, argSignif, argSq, argSqSq;
131 argSq.lsw = argSignif.lsw;
132 argSq.midw = argSignif.midw;
133 argSq.msw = argSignif.msw;
134 mul_Xsig_Xsig(&argSq, &argSq);
136 argSqSq.lsw = argSq.lsw;
137 argSqSq.midw = argSq.midw;
138 argSqSq.msw = argSq.msw;
141 accumulatore.lsw = argSq.lsw;
142 XSIG_LL(accumulatore) = XSIG_LL(argSq);
144 shr_Xsig(&argSq, 2 * (-1 - exponent - 1));
147 /* Now have argSq etc with binary point at the left
154 mul64_Xsig(&accumulator, &XSIG_LL(argSq));
168 mul_Xsig_Xsig(&accumulator, &argSq);