Searched refs:shiftLeft (Results 1 - 25 of 37) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java36 return new SimpleBigDecimal(value.shiftLeft(scale), scale);
84 return new SimpleBigDecimal(bigInt.shiftLeft(newScale - scale),
96 return new SimpleBigDecimal(bigInt.add(b.shiftLeft(scale)), scale);
111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
129 BigInteger dividend = bigInt.shiftLeft(scale);
138 public SimpleBigDecimal shiftLeft(int n) method in class:SimpleBigDecimal
140 return new SimpleBigDecimal(bigInt.shiftLeft(n), scale);
151 return bigInt.compareTo(val.shiftLeft(scale));
199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
202 fract = ECConstants.ONE.shiftLeft(scal
[all...]
H A DECFieldElement.java94 return ONE.shiftLeft(bitLength).subtract(p);
243 BigInteger k = u.shiftLeft(1).add(ECConstants.ONE);
291 // BigInteger fourX = x.shiftLeft(2);
306 // BigInteger twoR = r.shiftLeft(1); //ECConstants.TWO.multiply(r);
361 Vh = modReduce(Vh.multiply(Vh).subtract(Qh.shiftLeft(1)));
368 Vl = modReduce(Vl.multiply(Vl).subtract(Ql.shiftLeft(1)));
381 Vl = modReduce(Vl.multiply(Vl).subtract(Ql.shiftLeft(1)));
400 BigInteger _2x = x.shiftLeft(1);
422 // BigInteger v = x.subtract(u.shiftLeft(bits));
431 // x = x.add(u.shiftLeft(~n
[all...]
H A DWNafUtil.java16 BigInteger _3k = k.shiftLeft(1).add(k);
167 BigInteger _3k = k.shiftLeft(1).add(k);
H A DTnaf.java93 BigInteger s3 = lambda.v.multiply(lambda.v).shiftLeft(1);
135 SimpleBigDecimal s3 = v.multiply(v).shiftLeft(1);
344 u[i] = (byte) ECConstants.TWO.subtract((r0.subtract(r1.shiftLeft(1))).mod(ECConstants.FOUR)).intValue();
473 u2 = s.subtract(u0.shiftLeft(1));
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DBitArrayTest.java70 b.shiftLeft(1);
77 b.shiftLeft(2);
78 b.shiftLeft(2);
79 assertEquals(b.data, BigInteger.ZERO.setBit(10).shiftLeft(2).shiftLeft(2).longValue());
109 b.shiftLeft(64);
116 b.shiftLeft(1);
124 b.shiftLeft(1);
132 b.shiftLeft(67);
134 b.shiftLeft(6
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java180 BigInteger c = x.mod(q.shiftLeft(1));
250 BigInteger U = new BigInteger(1, output).mod(ONE.shiftLeft(N - 1));
253 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
284 Vj = Vj.mod(ONE.shiftLeft(b));
287 W = W.add(Vj.shiftLeft(exp));
291 BigInteger X = W.add(ONE.shiftLeft(L - 1));
294 BigInteger c = X.mod(q.shiftLeft(1));
H A DDHKeyGeneratorHelper.java34 min = ONE.shiftLeft(m - 1);
H A DDHParametersHelper.java43 p = q.shiftLeft(1).add(ONE);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DBitArray.java35 void shiftLeft(int count); method in interface:BitArray
57 @Override public void shiftLeft(int count) { method in class:BitArray.FixedCapacity
137 @Override public void shiftLeft(int count) { method in class:BitArray.VariableCapacity
/external/proguard/src/proguard/evaluation/value/
H A DLongValue.java150 public LongValue shiftLeft(IntegerValue other) method in class:LongValue
304 public LongValue shiftLeft(SpecificLongValue other) method in class:LongValue
460 public LongValue shiftLeft(ParticularIntegerValue other) method in class:LongValue
462 return shiftLeft((SpecificIntegerValue)other);
H A DParticularIntegerValue.java151 public IntegerValue shiftLeft(IntegerValue other) method in class:ParticularIntegerValue
158 return other.shiftLeft(this);
183 return other.shiftLeft(this);
279 public IntegerValue shiftLeft(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DSpecificIntegerValue.java119 public IntegerValue shiftLeft(IntegerValue other) method in class:SpecificIntegerValue
126 return other.shiftLeft(this);
151 return other.shiftLeft(this);
251 public IntegerValue shiftLeft(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DUnknownLongValue.java105 public LongValue shiftLeft(IntegerValue other) method in class:UnknownLongValue
H A DIntegerValue.java137 public abstract IntegerValue shiftLeft(IntegerValue other); method in class:IntegerValue
332 public IntegerValue shiftLeft(UnknownIntegerValue other) method in class:IntegerValue
334 return shiftLeft((IntegerValue)other);
576 public IntegerValue shiftLeft(SpecificIntegerValue other) method in class:IntegerValue
578 return shiftLeft((IntegerValue)other);
820 public IntegerValue shiftLeft(ParticularIntegerValue other) method in class:IntegerValue
822 return shiftLeft((SpecificIntegerValue)other);
H A DParticularLongValue.java124 public LongValue shiftLeft(IntegerValue other) method in class:ParticularLongValue
212 public LongValue shiftLeft(ParticularIntegerValue other) method in class:ParticularLongValue
H A DSpecificLongValue.java104 public LongValue shiftLeft(IntegerValue other) method in class:SpecificLongValue
196 public LongValue shiftLeft(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java121 public IntegerValue shiftLeft(IntegerValue other) method in class:UnknownIntegerValue
/external/guava/guava-tests/test/com/google/common/math/
H A DBigIntegerMathTest.java305 BigInteger plusHalfSquared = result.pow(2).add(result).shiftLeft(2).add(ONE);
306 BigInteger x4 = x.shiftLeft(2);
310 BigInteger minusHalfSquared = result.pow(2).subtract(result).shiftLeft(2).add(ONE);
320 BigInteger plusHalfSquared = result.pow(2).add(result).shiftLeft(2).add(ONE);
321 BigInteger x4 = x.shiftLeft(2);
325 BigInteger minusHalfSquared = result.pow(2).subtract(result).shiftLeft(2).add(ONE);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHpackDraft05.java167 referencedHeaders.shiftLeft(entriesToEvict);
168 emittedReferencedHeaders.shiftLeft(entriesToEvict);
319 referencedHeaders.shiftLeft(headerTable.length);
320 emittedReferencedHeaders.shiftLeft(headerTable.length);
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.h31 void shiftLeft(int bits) { fPacked = Shift(fPacked, bits); } function in class:SkFloat
/external/skia/src/core/
H A DSkFloat.h31 void shiftLeft(int bits) { fPacked = Shift(fPacked, bits); } function in class:SkFloat
/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java242 sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1);
336 return listProduct(bignums).shiftLeft(shift);
H A DDoubleMath.java168 BigInteger result = BigInteger.valueOf(significand).shiftLeft(exponent - SIGNIFICAND_BITS);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java160 bigValue = bigValue.shiftLeft(7);
/external/llvm/include/llvm/Support/
H A DScaledNumber.h626 shiftLeft(Shift);
635 void shiftLeft(int32_t Shift);
832 template <class DigitsT> void ScaledNumber<DigitsT>::shiftLeft(int32_t Shift) { function in class:llvm::ScaledNumber
868 shiftLeft(-Shift);

Completed in 2207 milliseconds

12