HomeSort by relevance Sort by last modified time
    Searched defs:shiftRight (Results 1 - 25 of 50) 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/chromium_org/third_party/skia/src/core/
SkFloat.h 34 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); }
  /external/llvm/lib/Support/
APFloat.cpp 363 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
1020 lf = shiftRight(fullSignificand, significantParts, bits);
1139 return shiftRight(significandParts(), partCount(), bits);
    [all...]
  /external/skia/src/core/
SkFloat.h 34 void shiftRight(int bits) { fPacked = Shift(fPacked, -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 465 public BigInteger shiftRight(int n) {
496 return BitLevel.shiftRight(this, -n);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 118 if (shiftRight(r0) != 0)
143 if (shiftRight(r0) != 0)
168 if (shiftRight(r0) != 0)
182 if (shiftRight(x) != 0)
190 if (shiftRight(x, y) != 0)
214 static byte shiftRight(byte[] x)
245 static byte shiftRight(byte[] x, byte[] z)
276 static int shiftRight(int[] x)
301 static int shiftRight(int[] x, int[] z)
326 static long shiftRight(long[] x
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 530 shiftRight(tmp);
543 private static void shiftRight(byte[] block)
  /external/llvm/include/llvm/Support/
ScaledNumber.h 630 shiftRight(Shift);
636 void shiftRight(int32_t Shift);
837 shiftRight(-Shift);
863 template <class DigitsT> void ScaledNumber<DigitsT>::shiftRight(int32_t Shift) {
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]
  /external/chromium_org/v8/benchmarks/
crypto.js     [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 772 Method shiftRight = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_RIGHT)
    [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 

Completed in 1265 milliseconds

1 2