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

Lines Matching full:negate

244   if(this.s < 0) return "-"+this.negate().toString(b);
276 function bnAbs() { return (this.s<0)?this.negate():this; }
651 BigInteger.prototype.negate = bnNegate;
1151 var x = (this.s<0)?this.negate():this.clone();
1152 var y = (a.s<0)?a.negate():a.clone();