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

1 2 3

  /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)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 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)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 665 protected void shiftLeft() {
733 shiftLeft();
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 625 shiftLeft(Shift);
634 void shiftLeft(int32_t Shift);
834 template <class DigitsT> void ScaledNumber<DigitsT>::shiftLeft(int32_t Shift) {
869 shiftLeft(-Shift);
  /libcore/luni/src/main/java/java/math/
BigInteger.java 466 return shiftLeft(-n);
482 public BigInteger shiftLeft(int n) {
    [all...]
  /external/crcalc/src/com/hp/creals/
CR.java 301 CR result = valueOf(mantissa).shiftLeft(exp);
322 return k.shiftLeft(n);
328 return k.shiftLeft(n);
573 scaled_CR = shiftLeft(4*n);
757 public CR shiftLeft(int n) {
    [all...]
  /external/v8/benchmarks/
crypto.js 764 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
768 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
920 var r = BigInteger.ONE.shiftLeft(n);
    [all...]
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java     [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.2/
proguard-base-5.3.2.jar 
  /prebuilts/tools/common/offline-m2/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 

Completed in 454 milliseconds

1 2 3