HomeSort by relevance Sort by last modified time
    Searched full:shiftright (Results 1 - 25 of 56) sorted by null

1 2 3

  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 414 * @tests java.math.BigInteger#shiftRight(int)
417 assertTrue("1 >> 0", BigInteger.valueOf(1).shiftRight(0).equals(
419 assertTrue("1 >> 1", BigInteger.valueOf(1).shiftRight(1).equals(
421 assertTrue("1 >> 63", BigInteger.valueOf(1).shiftRight(63).equals(
423 assertTrue("1 >> 64", BigInteger.valueOf(1).shiftRight(64).equals(
425 assertTrue("1 >> 65", BigInteger.valueOf(1).shiftRight(65).equals(
427 assertTrue("1 >> 1000", BigInteger.valueOf(1).shiftRight(1000).equals(
429 assertTrue("-1 >> 0", BigInteger.valueOf(-1).shiftRight(0).equals(
431 assertTrue("-1 >> 1", BigInteger.valueOf(-1).shiftRight(1).equals(
433 assertTrue("-1 >> 63", BigInteger.valueOf(-1).shiftRight(63).equals
    [all...]
BigIntegerHashCodeTest.java 42 aNumber1.subtract(aNumber2).shiftRight(125);
BigIntegerOperateBitsTest.java 28 * Methods: bitLength, shiftLeft, shiftRight,
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ParticularIntegerValue.java 161 public IntegerValue shiftRight(IntegerValue other)
168 return other.shiftRight(this);
188 return other.shiftRight(this);
284 public IntegerValue 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)
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);
UnknownIntegerValue.java 131 public IntegerValue shiftRight(IntegerValue other)
UnknownLongValue.java 110 public LongValue shiftRight(IntegerValue other)
ParticularLongValue.java 129 public LongValue shiftRight(IntegerValue other)
217 public LongValue shiftRight(ParticularIntegerValue other)
SpecificLongValue.java 109 public LongValue shiftRight(IntegerValue other)
201 public LongValue shiftRight(SpecificLongValue 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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 287 BigInteger ns = k.shiftRight(m - _k - 2 + a);
291 BigInteger hs = gs.shiftRight(m);
296 BigInteger ls = gsPlusJs.shiftRight(_k-c);
364 BigInteger s = r0.shiftRight(1);
375 r1 = t.shiftRight(1).negate();
563 si[0] = dividend0.shiftRight(1);
564 si[1] = dividend1.shiftRight(1).negate();
568 si[0] = dividend0.shiftRight(2);
569 si[1] = dividend1.shiftRight(2).negate();
729 BigInteger pow2wMin1 = pow2w.shiftRight(1)
    [all...]
WNafUtil.java 81 k = k.shiftRight(pos);
150 k0 = k0.shiftRight(1);
151 k1 = k1.shiftRight(1);
225 k = k.shiftRight(pos);
ECFieldElement.java 91 BigInteger firstWord = p.shiftRight(bitLength - 64);
228 ECFieldElement z = new Fp(q, r, x.modPow(q.shiftRight(2).add(ECConstants.ONE), q));
236 BigInteger legendreExponent = qMinusOne.shiftRight(1);
242 BigInteger u = qMinusOne.shiftRight(2);
272 V = V.shiftRight(1);
284 // BigInteger legendreExponent = qMinusOne.shiftRight(1); //divide(ECConstants.TWO);
301 // BigInteger n1 = qMinusOne.shiftRight(2); //.divide(ECConstants.FOUR);
322 // n = n.shiftRight(1);//divide(ECConstants.TWO);
421 // BigInteger u = x.shiftRight(bits);
450 BigInteger u = x.shiftRight(qLen)
    [all...]
SimpleBigDecimal.java 156 return bigInt.shiftRight(scale);
  /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) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
ECDSASigner.java 182 e = e.shiftRight(messageBitLength - log2n);
  /external/chromium_org/third_party/skia/src/core/
SkFloat.h 34 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); }
  /external/chromium_org/ui/base/ime/chromeos/
ime_keymap.cc 123 {VKEY_RSHIFT, "ShiftRight"},
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 85 BigInteger halfPower = SQRT2_PRECOMPUTED_BITS.shiftRight(
242 sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1);
244 BigInteger sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
250 sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
DoubleUtils.java 156 long twiceSignifFloor = absX.shiftRight(shift).longValue();
  /external/skia/src/core/
SkFloat.h 34 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); }
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 

Completed in 956 milliseconds

1 2 3