Searched refs:rShiftTo (Results 1 – 1 of 1) sorted by relevance
/third_party/node/deps/npm/node_modules/jsbn/ |
D | index.js | 399 if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder 542 BigInteger.prototype.rShiftTo = bnpRShiftTo; method in BigInteger 747 if(n < 0) this.rShiftTo(-n,r); else this.lShiftTo(n,r); 754 if(n < 0) this.lShiftTo(-n,r); else this.rShiftTo(n,r); 1041 x.rShiftTo(g,x); 1042 y.rShiftTo(g,y); 1045 if((i = x.getLowestSetBit()) > 0) x.rShiftTo(i,x); 1046 if((i = y.getLowestSetBit()) > 0) y.rShiftTo(i,y); 1049 x.rShiftTo(1,x); 1053 y.rShiftTo(1,y); [all …]
|