HomeSort by relevance Sort by last modified time
    Searched refs:anticount (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 403 // TODO: Why is anticount param needed if it is always 32 - bitcount?
411 * @param anticount The left anti-shift, e.g., <code>32-bitcount</code>.
415 @ requires 0 < bitcount && bitcount < 32 && anticount == 32 - bitcount;
420 private static void leftShift(int[] src, int idx, int result[], int bitcount, int anticount, int prev){
424 v |= (prev >>> anticount);
467 int anticount = 32 - bitcount; local
470 int hi = prev >>> anticount;
478 leftShift(data,idx,result,bitcount,anticount,prev);
483 int anticount = 32 - bitcount; local
488 int v = (prev >>> anticount);
    [all...]
FDBigInt.java 103 int anticount = 32-bitcount; local
113 // special hack, since an anticount of 32 won't go!
117 t[target--] = s[src]>>>anticount;
119 t[target--] = (s[src]<<bitcount) | (s[--src]>>>anticount);

Completed in 802 milliseconds