Home | History | Annotate | Download | only in benchmarks

Lines Matching refs:subtract

1233   if(d.compareTo(m) >= 0) return d.subtract(m);
1263 var n1 = this.subtract(BigInteger.ONE);
1324 BigInteger.prototype.subtract = bnSubtract;
1602 if(this.p.subtract(BigInteger.ONE).gcd(ee).compareTo(BigInteger.ONE) == 0 && this.p.isProbablePrime(10)) break;
1606 if(this.q.subtract(BigInteger.ONE).gcd(ee).compareTo(BigInteger.ONE) == 0 && this.q.isProbablePrime(10)) break;
1613 var p1 = this.p.subtract(BigInteger.ONE);
1614 var q1 = this.q.subtract(BigInteger.ONE);
1638 return xp.subtract(xq).multiply(this.coeff).mod(this.p).multiply(this.q).add(xq);