HomeSort by relevance Sort by last modified time
    Searched defs:shiftLeft (Results 1 - 25 of 38) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 223 public void shiftLeft()
258 public IntArray shiftLeft(int n)
273 throw new IllegalArgumentException("shiftLeft() for max 31 bits "
365 b.shiftLeft();
390 // c.shiftLeft();
SimpleBigDecimal.java 36 return new SimpleBigDecimal(value.shiftLeft(scale), scale);
84 return new SimpleBigDecimal(bigInt.shiftLeft(newScale - scale),
96 return new SimpleBigDecimal(bigInt.add(b.shiftLeft(scale)), scale);
111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
129 BigInteger dividend = bigInt.shiftLeft(scale);
138 public SimpleBigDecimal shiftLeft(int n)
140 return new SimpleBigDecimal(bigInt.shiftLeft(n), scale);
151 return bigInt.compareTo(val.shiftLeft(scale));
199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
202 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract)
    [all...]
  /external/proguard/src/proguard/evaluation/value/
SpecificLongValue.java 104 public LongValue shiftLeft(IntegerValue other)
196 public LongValue shiftLeft(SpecificLongValue other)
UnknownLongValue.java 105 public LongValue shiftLeft(IntegerValue other)
IntegerValue.java 137 public abstract IntegerValue shiftLeft(IntegerValue other);
332 public IntegerValue shiftLeft(UnknownIntegerValue other)
334 return shiftLeft((IntegerValue)other);
576 public IntegerValue shiftLeft(SpecificIntegerValue other)
578 return shiftLeft((IntegerValue)other);
820 public IntegerValue shiftLeft(ParticularIntegerValue other)
822 return shiftLeft((SpecificIntegerValue)other);
LongValue.java 150 public LongValue shiftLeft(IntegerValue other)
304 public LongValue shiftLeft(SpecificLongValue other)
460 public LongValue shiftLeft(ParticularIntegerValue other)
462 return shiftLeft((SpecificIntegerValue)other);
ParticularIntegerValue.java 151 public IntegerValue shiftLeft(IntegerValue other)
158 return other.shiftLeft(this);
183 return other.shiftLeft(this);
279 public IntegerValue shiftLeft(ParticularIntegerValue other)
ParticularLongValue.java 124 public LongValue shiftLeft(IntegerValue other)
212 public LongValue shiftLeft(ParticularIntegerValue other)
SpecificIntegerValue.java 119 public IntegerValue shiftLeft(IntegerValue other)
126 return other.shiftLeft(this);
151 return other.shiftLeft(this);
251 public IntegerValue shiftLeft(SpecificIntegerValue other)
UnknownIntegerValue.java 121 public IntegerValue shiftLeft(IntegerValue other)