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)
  /external/skia/legacy/src/core/
SkFloat.h 33 void shiftLeft(int bits) { fPacked = Shift(fPacked, bits); }
Sk64.cpp 38 void Sk64::shiftLeft(unsigned bits)
100 one.shiftLeft(bits - 1);
352 N.shiftLeft(shiftN);
  /external/skia/src/core/
SkFloat.h 33 void shiftLeft(int bits) { fPacked = Shift(fPacked, bits); }
Sk64.cpp 36 void Sk64::shiftLeft(unsigned bits)
98 one.shiftLeft(bits - 1);
350 N.shiftLeft(shiftN);
  /libcore/luni/src/main/java/java/math/
BigInteger.java 432 return shiftLeft(-n);
448 public BigInteger shiftLeft(int n) {
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 769 Method shiftLeft = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_LEFT);
770 assertEquals(0xcd123400, shiftLeft.invoke(null, 0xabcd1234, 8));
    [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/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 756 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
760 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
912 var r = BigInteger.ONE.shiftLeft(n);
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js 756 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
760 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
912 var r = BigInteger.ONE.shiftLeft(n);
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js 756 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
760 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
912 var r = BigInteger.ONE.shiftLeft(n);
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 2558 milliseconds

1 2