Lines Matching refs:subtract
1225 if(d.compareTo(m) >= 0) return d.subtract(m);
1255 var n1 = this.subtract(BigInteger.ONE);
1316 BigInteger.prototype.subtract = bnSubtract;
1594 if(this.p.subtract(BigInteger.ONE).gcd(ee).compareTo(BigInteger.ONE) == 0 && this.p.isProbablePrime(10)) break;
1598 if(this.q.subtract(BigInteger.ONE).gcd(ee).compareTo(BigInteger.ONE) == 0 && this.q.isProbablePrime(10)) break;
1605 var p1 = this.p.subtract(BigInteger.ONE);
1606 var q1 = this.q.subtract(BigInteger.ONE);
1630 return xp.subtract(xq).multiply(this.coeff).mod(this.p).multiply(this.q).add(xq);