Home | History | Annotate | Download | only in ec

Lines Matching defs:shiftLeft

36         return new SimpleBigDecimal(value.shiftLeft(scale), scale);
78 return new SimpleBigDecimal(bigInt.shiftLeft(newScale - scale),
90 return new SimpleBigDecimal(bigInt.add(b.shiftLeft(scale)), scale);
105 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
123 BigInteger dividend = bigInt.shiftLeft(scale);
132 public SimpleBigDecimal shiftLeft(int n)
134 return new SimpleBigDecimal(bigInt.shiftLeft(n), scale);
145 return bigInt.compareTo(val.shiftLeft(scale));
193 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
196 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);