/dalvik/libcore/math/src/main/java/java/math/ |
Multiplication.java | 135 return bigFivePows[1].pow(intExp).shiftLeft(intExp); 150 return bigFivePows[1].pow(intExp).shiftLeft(intExp); 170 res = res.shiftLeft(Integer.MAX_VALUE); 173 res = res.shiftLeft(Integer.MAX_VALUE); 176 res = res.shiftLeft(intExp);
|
BigInteger.java | 528 return shiftLeft(-n); 545 public BigInteger shiftLeft(int n) { 550 validate1("shiftLeft", this); [all...] |
BigDecimal.java | [all...] |
/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)
|
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/ |
BigIntegerHashCodeTest.java | 53 aNumber1.add(aNumber2).shiftLeft(125);
|
BigIntegerOrTest.java | 543 BigInteger r1 = x.and((BigInteger.ZERO.not()).shiftLeft(32)); 544 BigInteger r3 = x.and((BigInteger.ZERO.not().shiftLeft(32) ).not());
|
BigIntegerOperateBitsTest.java | 35 * Methods: bitLength, shiftLeft, shiftRight, [all...] |
/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...] |
/dalvik/libcore/math/src/test/java/tests/api/java/math/ |
BigIntegerTest.java | 793 a = a.shiftLeft(1); 815 * @tests java.math.BigInteger#shiftLeft(int) 820 method = "shiftLeft", 824 assertTrue("1 << 0", one.shiftLeft(0).equals(one)); 825 assertTrue("1 << 1", one.shiftLeft(1).equals(two)); 826 assertTrue("1 << 63", one.shiftLeft(63).equals( 828 assertTrue("1 << 64", one.shiftLeft(64).equals( 830 assertTrue("1 << 65", one.shiftLeft(65).equals( 832 assertTrue("-1 << 0", minusOne.shiftLeft(0).equals(minusOne)); 833 assertTrue("-1 << 1", minusOne.shiftLeft(1).equals(minusTwo)) [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
DERObjectIdentifier.java | 102 bigValue = bigValue.shiftLeft(7);
|
/external/skia/include/core/ |
Sk64.h | 122 void shiftLeft(unsigned bits);
|
/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...] |