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

1 2

  /libcore/luni/src/main/java/java/math/
Multiplication.java 131 return bigFivePows[1].pow(intExp).shiftLeft(intExp);
145 return bigFivePows[1].pow(intExp).shiftLeft(intExp);
165 res = res.shiftLeft(Integer.MAX_VALUE);
168 res = res.shiftLeft(Integer.MAX_VALUE);
171 res = res.shiftLeft(intExp);
BigInteger.java 438 return shiftLeft(-n);
454 public BigInteger shiftLeft(int n) {
    [all...]
BigDecimal.java     [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 126 BigInteger c = x.mod(q.shiftLeft(1));
195 BigInteger U = new BigInteger(1, output).mod(ONE.shiftLeft(N - 1));
198 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
229 Vj = Vj.mod(ONE.shiftLeft(b));
232 W = W.add(Vj.shiftLeft(exp));
236 BigInteger X = W.add(ONE.shiftLeft(L - 1));
239 BigInteger c = X.mod(q.shiftLeft(1));
DHKeyGeneratorHelper.java 34 min = ONE.shiftLeft(m - 1);
DHParametersHelper.java 27 p = q.shiftLeft(1).add(ONE);
  /external/proguard/src/proguard/evaluation/value/
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)
SpecificIntegerValue.java 119 public IntegerValue shiftLeft(IntegerValue other)
126 return other.shiftLeft(this);
151 return other.shiftLeft(this);
251 public IntegerValue shiftLeft(SpecificIntegerValue 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);
ParticularLongValue.java 124 public LongValue shiftLeft(IntegerValue other)
212 public LongValue shiftLeft(ParticularIntegerValue other)
SpecificLongValue.java 104 public LongValue shiftLeft(IntegerValue other)
196 public LongValue shiftLeft(SpecificLongValue other)
UnknownIntegerValue.java 121 public IntegerValue shiftLeft(IntegerValue other)
  /external/skia/src/core/
Sk64.cpp 45 void Sk64::shiftLeft(unsigned bits)
107 one.shiftLeft(bits - 1);
359 N.shiftLeft(shiftN);
SkFloat.h 40 void shiftLeft(int bits) { fPacked = Shift(fPacked, bits); }
SkBitmap.cpp 204 rowBytes.shiftLeft(1);
208 rowBytes.shiftLeft(2);
    [all...]
SkGeometry.cpp 139 tmp.shiftLeft(2);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 645 a = a.shiftLeft(1);
667 * @tests java.math.BigInteger#shiftLeft(int)
670 assertTrue("1 << 0", one.shiftLeft(0).equals(one));
671 assertTrue("1 << 1", one.shiftLeft(1).equals(two));
672 assertTrue("1 << 63", one.shiftLeft(63).equals(
674 assertTrue("1 << 64", one.shiftLeft(64).equals(
676 assertTrue("1 << 65", one.shiftLeft(65).equals(
678 assertTrue("-1 << 0", minusOne.shiftLeft(0).equals(minusOne));
679 assertTrue("-1 << 1", minusOne.shiftLeft(1).equals(minusTwo));
680 assertTrue("-1 << 63", minusOne.shiftLeft(63).equals
    [all...]
  /external/skia/include/core/
Sk64.h 122 void shiftLeft(unsigned bits);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 102 bigValue = bigValue.shiftLeft(7);
  /external/skia/tests/
Sk64Test.cpp 128 c = a; c.shiftLeft(bits);
  /external/proguard/lib/
proguard.jar 
  /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/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...]

Completed in 206 milliseconds

1 2