Searched refs:q0 (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dk_rem_pio2.c117 * q0 the corresponding exponent of q[0]. Note that the
118 * exponent for q[i] would be q0-24*i.
183 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
190 /* determine jx,jv,q0, note that 3>q0 */
193 q0 = e0-24*(jv+1);
214 z = scalbn(z,q0); /* actual value of z */
219 if(q0>0) { /* need iq[jz-1] to determine n */
220 i = (iq[jz-1]>>(24-q0)); n += i;
221 iq[jz-1] -= i<<(24-q0);
[all...]
H A De_jn.c174 double q0,q1,h,tmp; int k,m; local
176 q0 = w; z = w+h; q1 = w*z - 1.0; k=1;
179 tmp = z*q1 - q0;
180 q0 = q1;
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrig.cpp214 * q0 the corresponding exponent of q[0]. Note that the
215 * exponent for q[i] would be q0-24*i.
261 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
268 /* determine jx,jv,q0, note that 3>q0 */
271 q0 = e0-24*(jv+1);
292 z = scalbnA(z,q0); /* actual value of z */
297 if(q0>0) { /* need iq[jz-1] to determine n */
298 i = (iq[jz-1]>>(24-q0)); n += i;
299 iq[jz-1] -= i<<(24-q0);
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java308 long q0, q1, q2, q3, q4, q5, q6, q7, q8, q9, qa, qb, qc, qd, qe; field in class:Exchanger.Slot
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c4144 mp_digit d1, d0, q1, q0; local
4161 q0 = r1 / d1;
4162 m = q0 * d0;
4165 q0--, r0 += divisor;
4167 q0--, r0 += divisor;
4171 *qp = (q1 << MP_HALF_DIGIT_BIT) | q0;

Completed in 693 milliseconds