| 268 | return bits_hash_ - log_blocks - bits_stamp_; |
| 269 | } |
| 270 | static int ComputeBitsShiftForBlock(int log_blocks) { |
| 271 | if (ARROW_PREDICT_FALSE(log_blocks + bits_stamp_ > bits_hash_)) { |
| 272 | return bits_hash_ - log_blocks; |
| 273 | } |
| 274 | return bits_stamp_; |
| 275 | } |
| 276 | |
| 277 | static constexpr int bytes_status_in_block_ = 8; |
| 278 |
no outgoing calls
no test coverage detected