Searched refs:changeBit (Results 1 – 1 of 1) sorted by relevance
807 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