Home | History | Annotate | Download | only in ec

Lines Matching defs:bitLength

27     public int bitLength()
29 return toBigInteger().bitLength();
34 return bitLength() == 1;
93 int bitLength = p.bitLength();
94 if (bitLength >= 96)
96 BigInteger firstWord = p.shiftRight(bitLength - 64);
99 return ONE.shiftLeft(bitLength).subtract(p);
142 return q.bitLength();
293 P = new BigInteger(q.bitLength(), rand);
324 int n = k.bitLength();
434 int qLen = q.bitLength();
436 while (x.bitLength() > (qLen + 1))
561 if (x == null || x.signum() < 0 || x.bitLength() > m)
615 public int bitLength()