Searched refs:qhat (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/sys/libkern/
H A Dqdivrem.c85 u_long qhat, rhat, t; local
197 * D3: Calculate qhat (\^q, in TeX notation).
198 * Let qhat = min((u[j]*B + u[j+1])/v[1], B-1), and
200 * While rhat < B and v[2]*qhat > rhat*B+u[j+2],
201 * decrement qhat and increase rhat correspondingly.
202 * Note that if rhat >= B, v[2]*qhat < rhat*B.
208 qhat = B;
213 qhat = nn / v1;
216 while (v2 * qhat > COMBINE(rhat, uj2)) {
218 qhat
[all...]
/freebsd-current/lib/libc/quad/
H A Dqdivrem.c84 u_long qhat, rhat, t; local
196 * D3: Calculate qhat (\^q, in TeX notation).
197 * Let qhat = min((u[j]*B + u[j+1])/v[1], B-1), and
199 * While rhat < B and v[2]*qhat > rhat*B+u[j+2],
200 * decrement qhat and increase rhat correspondingly.
201 * Note that if rhat >= B, v[2]*qhat < rhat*B.
207 qhat = B;
212 qhat = n / v1;
215 while (v2 * qhat > COMBINE(rhat, uj2)) {
217 qhat
[all...]

Completed in 60 milliseconds