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

1 2

  /external/proguard/src/proguard/evaluation/value/
SpecificLongValue.java 109 public LongValue shiftRight(IntegerValue other)
201 public LongValue shiftRight(SpecificLongValue other)
UnknownLongValue.java 110 public LongValue shiftRight(IntegerValue other)
IntegerValue.java 142 public abstract IntegerValue shiftRight(IntegerValue other);
340 public IntegerValue shiftRight(UnknownIntegerValue other)
342 return shiftRight((IntegerValue)other);
584 public IntegerValue shiftRight(SpecificIntegerValue other)
586 return shiftRight((IntegerValue)other);
828 public IntegerValue shiftRight(ParticularIntegerValue other)
830 return shiftRight((SpecificIntegerValue)other);
LongValue.java 158 public LongValue shiftRight(IntegerValue other)
312 public LongValue shiftRight(SpecificLongValue other)
468 public LongValue shiftRight(ParticularIntegerValue other)
470 return shiftRight((SpecificIntegerValue)other);
ParticularIntegerValue.java 161 public IntegerValue shiftRight(IntegerValue other)
168 return other.shiftRight(this);
188 return other.shiftRight(this);
284 public IntegerValue shiftRight(ParticularIntegerValue other)
ParticularLongValue.java 129 public LongValue shiftRight(IntegerValue other)
217 public LongValue shiftRight(ParticularIntegerValue other)
SpecificIntegerValue.java 129 public IntegerValue shiftRight(IntegerValue other)
136 return other.shiftRight(this);
156 return other.shiftRight(this);
256 public IntegerValue shiftRight(SpecificIntegerValue other)
UnknownIntegerValue.java 131 public IntegerValue shiftRight(IntegerValue other)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 57 shiftRight(tmp);
74 shiftRight(x);
86 shiftRight(x, output);
125 static void shiftRight(byte[] block)
141 static void shiftRight(byte[] block, byte[] output)
157 static void shiftRight(int[] block)
173 static void shiftRight(int[] block, int[] output)
  /external/llvm/lib/Support/
APFloat.cpp 357 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
923 lf = shiftRight(fullSignificand, significantParts, bits);
1042 return shiftRight(significandParts(), partCount(), bits);
    [all...]
  /external/skia/legacy/src/core/
SkFloat.h 36 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); }
Sk64.cpp 75 void Sk64::shiftRight(unsigned bits)
102 this->shiftRight(bits);
  /external/skia/src/core/
SkFloat.h 36 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); }
Sk64.cpp 73 void Sk64::shiftRight(unsigned bits)
100 this->shiftRight(bits);
  /libcore/luni/src/main/java/java/math/
BitLevel.java 135 /** @see BigInteger#shiftRight(int) */
136 static BigInteger shiftRight(BigInteger source, int count) {
147 shiftRight(resDigits, resLength, source.digits, intCount, count);
185 static boolean shiftRight(int[] result, int resultLen, int[] source, int intCount, int count) {
BigInteger.java 431 public BigInteger shiftRight(int n) {
462 return BitLevel.shiftRight(this, -n);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 530 shiftRight(tmp);
543 private static void shiftRight(byte[] block)
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 772 Method shiftRight = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_RIGHT)
    [all...]
  /external/v8/benchmarks/
crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 

Completed in 1785 milliseconds

1 2