Searched refs:rShiftTo (Results 1 – 1 of 1) sorted by relevance
/external/v8/benchmarks/ |
D | crypto.js | 500 if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder 648 BigInteger.prototype.rShiftTo = bnpRShiftTo; method in BigInteger 864 if(n < 0) this.rShiftTo(-n,r); else this.lShiftTo(n,r); 871 if(n < 0) this.lShiftTo(-n,r); else this.rShiftTo(n,r); 1166 x.rShiftTo(g,x); 1167 y.rShiftTo(g,y); 1170 if((i = x.getLowestSetBit()) > 0) x.rShiftTo(i,x); 1171 if((i = y.getLowestSetBit()) > 0) y.rShiftTo(i,y); 1174 x.rShiftTo(1,x); 1178 y.rShiftTo(1,y); [all …]
|