Home | History | Annotate | Download | only in v8-v5

Lines Matching refs:xp

1625   var xp = x.mod(this.p).modPow(this.dmp1, this.p);
1628 while(xp.compareTo(xq) < 0)
1629 xp = xp.add(this.p);
1630 return xp.subtract(xq).multiply(this.coeff).mod(this.p).multiply(this.q).add(xq);