Home
last modified time | relevance | path

Searched refs:changeBit (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/npm/node_modules/jsbn/
Dindex.js807 function bnSetBit(n) { return this.changeBit(n,op_or); }
810 function bnClearBit(n) { return this.changeBit(n,op_andnot); }
813 function bnFlipBit(n) { return this.changeBit(n,op_xor); }
1165 BigInteger.prototype.changeBit = bnpChangeBit; method in BigInteger