Home | History | Annotate | Download | only in benchmarks

Lines Matching full:negate

252   if(this.s < 0) return "-"+this.negate().toString(b);
284 function bnAbs() { return (this.s<0)?this.negate():this; }
659 BigInteger.prototype.negate = bnNegate;
1159 var x = (this.s<0)?this.negate():this.clone();
1160 var y = (a.s<0)?a.negate():a.clone();