Lines Matching refs:subTo
41912 if(mi) BigInteger.ZERO.subTo(this,this);
41952 function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; }
42079 if(this.s != a.s) BigInteger.ZERO.subTo(r,r);
42124 r.subTo(t,r);
42127 t.subTo(y,y); // "negative" y so we can replace sub with am later
42134 r.subTo(t,r);
42135 while(r[i] < --qd) r.subTo(t,r);
42140 if(ts != ms) BigInteger.ZERO.subTo(q,q);
42145 if(ts < 0) BigInteger.ZERO.subTo(r,r);
42152 if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r);
42213 if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r);
42241 if(x.compareTo(this.m) >= 0) x.subTo(this.m,x);
42288 BigInteger.prototype.subTo = bnpSubTo;
42335 if(mi) BigInteger.ZERO.subTo(this,this);