HomeSort by relevance Sort by last modified time
    Searched refs:testBit (Results 1 - 25 of 46) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RSAKeyGenerationParameters.java 30 if (!publicExponent.testBit(0))
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointCombMultiplier.java 41 if (k.testBit(j))
WNafUtil.java 36 if (!diff.testBit(i))
42 int digit = k.testBit(i) ? -1 : 1;
90 if (k.testBit(pos) == carry)
201 if (diff.testBit(i))
203 naf[i - 1] = (byte)(k.testBit(i) ? -1 : 1);
253 if (k.testBit(pos) == carry)
ECFieldElement.java 74 return toBigInteger().testBit(0);
240 if (!q.testBit(0))
248 if (q.testBit(1)) // q == 4m + 3
254 if (q.testBit(2)) // q == 8m + 5
327 // assert k.testBit(s);
339 if (k.testBit(j))
393 if (x.testBit(0))
402 if (x.testBit(0))
Tnaf.java 297 if (gsPlusJs.testBit(_k-c-1))
342 if (r0.testBit(0))
766 if (r0.testBit(0))
ECAlgorithms.java 194 if (x.testBit(0))
201 if (x.testBit(i))
LongArray.java     [all...]
ECCurve.java 424 if (Y.testBit(0) != (type == 0x07))
    [all...]
  /libcore/ojluni/src/main/java/java/security/spec/
ECFieldF2m.java 92 if (!this.rp.testBit(0) || !this.rp.testBit(m) ||
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 762 assertTrue("and", (i1.testBit(i) && i2.testBit(i)) == res
763 .testBit(i));
778 assertTrue("or", (i1.testBit(i) || i2.testBit(i)) == res
779 .testBit(i));
794 assertTrue("xor", (i1.testBit(i) ^ i2.testBit(i)) == res
795 .testBit(i));
809 assertTrue("not", !i1.testBit(i) == res.testBit(i))
    [all...]
BigIntegerOperateBitsTest.java 29 * clearBit, flipBit, setBit, testBit
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
GLVTypeBEndomorphism.java 50 boolean extra = b.testBit(t - 1);
  /hardware/libhardware/modules/input/evdev/
InputHub.cpp 53 static constexpr bool testBit(int bit, const uint8_t arr[]) {
254 if (testBit(axis, mAbsBitmask)) {
275 return testBit(key, mKeyBitmask);
286 return testBit(axis, mRelBitmask);
312 return testBit(sw, mSwBitmask);
319 return testBit(ff, mFfBitmask);
326 return testBit(property, mPropBitmask);
333 if (testBit(key, mKeyBitmask)) {
337 return testBit(key, keyState) ? AKEY_STATE_DOWN : AKEY_STATE_UP;
346 if (testBit(sw, mSwBitmask))
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 536 public boolean testBit(int n) {
584 if (!testBit(n)) {
604 if (testBit(n)) {
    [all...]
BitLevel.java 91 static boolean testBit(BigInteger val, int n) {
BigDecimal.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/
Primes.java 167 if (!candidate.testBit(0))
293 if (!candidate.testBit(0))
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 351 boolean floorWasOdd = BigIntegerMath.sqrt(x, FLOOR).testBit(0);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java 615 while (!den.testBit(0)) {
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 811 private boolean testBit(byte[] signature, int idx)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java     [all...]
  /external/v8/benchmarks/
crypto.js 763 if(!this.testBit(a-1)) // force MSB set
    [all...]
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1008 milliseconds

1 2