HomeSort by relevance Sort by last modified time
    Searched full:lsbthreshold (Results 1 - 1 of 1) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 174 int lsbthreshold = 1000; local
175 while (lsbthreshold > msb) {
176 lsbthreshold /= 10;
185 lsbthreshold = 1;
187 lsbthreshold *= 10;
192 if (lsbthreshold <= 1 && digits == 4 * mant.length - 3) {
198 if (lsbthreshold == 1) {
204 n = (lsb * 10 / lsbthreshold) % 10;
205 discarded |= lsb % (lsbthreshold/10);
213 mant[lsd] = lsb / lsbthreshold * lsbthreshold
    [all...]

Completed in 243 milliseconds