Searched refs:changeBit (Results 1 – 1 of 1) sorted by relevance
926 function bnSetBit(n) { return this.changeBit(n,op_or); }929 function bnClearBit(n) { return this.changeBit(n,op_andnot); }932 function bnFlipBit(n) { return this.changeBit(n,op_xor); }1291 BigInteger.prototype.changeBit = bnpChangeBit; method in BigInteger