Turn the lowest '1' bit in the binary representation of a number into a '0'. */
| 2013 | |
| 2014 | /** Turn the lowest '1' bit in the binary representation of a number into a '0'. */ |
| 2015 | int32_t static inline InvertLowestOne(int32_t n) { return n & (n - 1); } |
| 2016 | |
| 2017 | /** Compute what height to jump back to with the CBlockIndex::pskip pointer. */ |
| 2018 | int32_t static inline GetSkipHeight(int32_t height) { |