Searched defs:rhat (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dqdivrem.c81 u_int qhat, rhat, t; local
195 * let rhat = (u[j]*B + u[j+1]) mod v[1].
196 * While rhat < B and v[2]*qhat > rhat*B+u[j+2],
197 * decrement qhat and increase rhat correspondingly.
198 * Note that if rhat >= B, v[2]*qhat < rhat*B.
205 rhat = uj1;
210 rhat = nn % v1;
212 while (v2 * qhat > COMBINE(rhat, uj
[all...]

Completed in 33 milliseconds