Turn the lowest '1' bit in the binary representation of a number into a '0'. */
| 98 | |
| 99 | /** Turn the lowest '1' bit in the binary representation of a number into a '0'. */ |
| 100 | int static inline InvertLowestOne(int n) { return n & (n - 1); } |
| 101 | |
| 102 | /** Compute what height to jump back to with the CBlockIndex::pskip pointer. */ |
| 103 | int static inline GetSkipHeight(int height) { |