Searched refs:shiftRight (Results 1 - 25 of 38) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java57 shiftRight(tmp);
74 shiftRight(x);
86 shiftRight(x, output);
125 static void shiftRight(byte[] block) method in class:GCMUtil
141 static void shiftRight(byte[] block, byte[] output) method in class:GCMUtil
157 static void shiftRight(int[] block) method in class:GCMUtil
173 static void shiftRight(int[] block, int[] output) method in class:GCMUtil
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DTnaf.java287 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();
577 si[0] = dividend0.shiftRight(1);
578 si[1] = dividend1.shiftRight(1).negate();
582 si[0] = dividend0.shiftRight(2);
583 si[1] = dividend1.shiftRight(2).negate();
743 BigInteger pow2wMin1 = pow2w.shiftRight(
[all...]
H A DECFieldElement.java123 ECFieldElement z = new Fp(q, x.modPow(q.shiftRight(2).add(ECConstants.ONE), q));
131 BigInteger legendreExponent = qMinusOne.shiftRight(1);
137 BigInteger u = qMinusOne.shiftRight(2);
167 V = V.shiftRight(1);
179 // BigInteger legendreExponent = qMinusOne.shiftRight(1); //divide(ECConstants.TWO);
196 // BigInteger n1 = qMinusOne.shiftRight(2); //.divide(ECConstants.FOUR);
217 // n = n.shiftRight(1);//divide(ECConstants.TWO);
H A DWNafMultiplier.java71 k = k.shiftRight(1);
H A DSimpleBigDecimal.java156 return bigInt.shiftRight(scale);
/external/proguard/src/proguard/evaluation/value/
H A DLongValue.java158 public LongValue shiftRight(IntegerValue other) method in class:LongValue
312 public LongValue shiftRight(SpecificLongValue other) method in class:LongValue
468 public LongValue shiftRight(ParticularIntegerValue other) method in class:LongValue
470 return shiftRight((SpecificIntegerValue)other);
H A DParticularIntegerValue.java161 public IntegerValue shiftRight(IntegerValue other) method in class:ParticularIntegerValue
168 return other.shiftRight(this);
188 return other.shiftRight(this);
284 public IntegerValue shiftRight(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DSpecificIntegerValue.java129 public IntegerValue shiftRight(IntegerValue other) method in class:SpecificIntegerValue
136 return other.shiftRight(this);
156 return other.shiftRight(this);
256 public IntegerValue shiftRight(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DUnknownLongValue.java110 public LongValue shiftRight(IntegerValue other) method in class:UnknownLongValue
H A DIntegerValue.java142 public abstract IntegerValue shiftRight(IntegerValue other); method in class:IntegerValue
340 public IntegerValue shiftRight(UnknownIntegerValue other) method in class:IntegerValue
342 return shiftRight((IntegerValue)other);
584 public IntegerValue shiftRight(SpecificIntegerValue other) method in class:IntegerValue
586 return shiftRight((IntegerValue)other);
828 public IntegerValue shiftRight(ParticularIntegerValue other) method in class:IntegerValue
830 return shiftRight((SpecificIntegerValue)other);
H A DParticularLongValue.java129 public LongValue shiftRight(IntegerValue other) method in class:ParticularLongValue
217 public LongValue shiftRight(ParticularIntegerValue other) method in class:ParticularLongValue
H A DSpecificLongValue.java109 public LongValue shiftRight(IntegerValue other) method in class:SpecificLongValue
201 public LongValue shiftRight(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java131 public IntegerValue shiftRight(IntegerValue other) method in class:UnknownIntegerValue
/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java85 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);
H A DDoubleUtils.java156 long twiceSignifFloor = absX.shiftRight(shift).longValue();
/external/chromium_org/third_party/skia/src/core/
H A DSk64.cpp73 void Sk64::shiftRight(unsigned bits) function in class:Sk64
100 this->shiftRight(bits);
H A DSkFloat.h36 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); } function in class:SkFloat
/external/skia/src/core/
H A DSk64.cpp73 void Sk64::shiftRight(unsigned bits) function in class:Sk64
100 this->shiftRight(bits);
H A DSkFloat.h36 void shiftRight(int bits) { fPacked = Shift(fPacked, -bits); } function in class:SkFloat
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DECDSASigner.java164 trunc = trunc.shiftRight(messageBitLength - log2n);
/external/chromium_org/third_party/skia/include/core/
H A DSk64.h120 void shiftRight(unsigned bits);
/external/skia/include/core/
H A DSk64.h120 void shiftRight(unsigned bits);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java530 shiftRight(tmp);
543 private static void shiftRight(byte[] block) method in class:GCMBlockCipher
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java224 tmpValue = tmpValue.shiftRight(7);
/external/skia/tests/
H A DSk64Test.cpp137 c = a; c.shiftRight(bits);

Completed in 172 milliseconds

12