Home | History | Annotate | Download | only in coregrind

Lines Matching full:rhat

3506         rhat;                // A remainder.
3526 rhat = un32 - q1*vn1; // quotient digit, q1.
3528 if (q1 >= b || q1*vn0 > b*rhat + un1) {
3530 rhat = rhat + vn1;
3531 if (rhat < b) goto again1;}
3536 rhat = un21 - q0*vn1; // quotient digit, q0.
3538 if (q0 >= b || q0*vn0 > b*rhat + un0) {
3540 rhat = rhat + vn1;
3541 if (rhat < b) goto again2;}