Turn the lowest '1' bit in the binary representation of a number into a '0'. */
| 63 | |
| 64 | /** Turn the lowest '1' bit in the binary representation of a number into a '0'. */ |
| 65 | int static inline InvertLowestOne(int n) { return n & (n - 1); } |
| 66 | |
| 67 | /** Compute what height to jump back to with the CBlockIndex::pskip pointer. */ |
| 68 | int static inline GetSkipHeight(int height) { |