Searched defs:rShiftTo (Results 1 - 2 of 2) sorted by relevance

/external/v8/benchmarks/
H A Dcrypto.js500 if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder
648 BigInteger.prototype.rShiftTo = bnpRShiftTo;
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(
[all...]
/external/webkit/SunSpider/tests/v8-v4/
H A Dv8-crypto.js492 if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder
640 BigInteger.prototype.rShiftTo = bnpRShiftTo;
856 if(n < 0) this.rShiftTo(-n,r); else this.lShiftTo(n,r);
863 if(n < 0) this.lShiftTo(-n,r); else this.rShiftTo(n,r);
1158 x.rShiftTo(g,x);
1159 y.rShiftTo(g,y);
1162 if((i = x.getLowestSetBit()) > 0) x.rShiftTo(i,x);
1163 if((i = y.getLowestSetBit()) > 0) y.rShiftTo(i,y);
1166 x.rShiftTo(1,x);
1170 y.rShiftTo(
[all...]

Completed in 21 milliseconds