Turn the lowest '1' bit in the binary representation of a number into a '0'. */
| 4941 | |
| 4942 | /** Turn the lowest '1' bit in the binary representation of a number into a '0'. */ |
| 4943 | int static inline InvertLowestOne(int n) { return n & (n - 1); } |
| 4944 | |
| 4945 | /** Compute what height to jump back to with the CBlockIndex::pskip pointer. */ |
| 4946 | int static inline GetSkipHeight(int height) |