Home | History | Annotate | Download | only in src

Lines Matching refs:q0

108  *	q0	the corresponding exponent of q[0]. Note that the
109 * exponent for q[i] would be q0-24*i.
158 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih;
165 /* determine jx,jv,q0, note that 3>q0 */
168 q0 = e0-24*(jv+1);
189 z = scalbn(z,q0); /* actual value of z */
194 if(q0>0) { /* need iq[jz-1] to determine n */
195 i = (iq[jz-1]>>(24-q0)); n += i;
196 iq[jz-1] -= i<<(24-q0);
197 ih = iq[jz-1]>>(23-q0);
199 else if(q0==0) ih = iq[jz-1]>>23;
212 if(q0>0) { /* rare case: chance is 1 in 12 */
213 switch(q0) {
222 if(carry!=0) z -= scalbn(one,q0);
245 jz -= 1; q0 -= 24;
246 while(iq[jz]==0) { jz--; q0-=24;}
248 z = scalbn(z,-q0);
252 jz += 1; q0 += 24;
258 fw = scalbn(one,q0);