HomeSort by: relevance | last modified time | path
    Searched defs:rhat (Results 1 - 2 of 2) sorted by relevancy

  /src/common/lib/libc/quad/
qdivrem.c 80 u_int qhat, rhat, t; local in function:__qdivrem
194 * let rhat = (u[j]*B + u[j+1]) mod v[1].
195 * While rhat < B and v[2]*qhat > rhat*B+u[j+2],
196 * decrement qhat and increase rhat correspondingly.
197 * Note that if rhat >= B, v[2]*qhat < rhat*B.
204 rhat = uj1;
209 rhat = nn % v1;
211 while (v2 * qhat > COMBINE(rhat, uj2))
    [all...]
qdivrem.c 80 u_int qhat, rhat, t; local in function:__qdivrem
194 * let rhat = (u[j]*B + u[j+1]) mod v[1].
195 * While rhat < B and v[2]*qhat > rhat*B+u[j+2],
196 * decrement qhat and increase rhat correspondingly.
197 * Note that if rhat >= B, v[2]*qhat < rhat*B.
204 rhat = uj1;
209 rhat = nn % v1;
211 while (v2 * qhat > COMBINE(rhat, uj2))
    [all...]

Completed in 22 milliseconds