| 427 | } |
| 428 | |
| 429 | Result<std::shared_ptr<Buffer>> BitmapOr(MemoryPool* pool, const uint8_t* left, |
| 430 | int64_t left_offset, const uint8_t* right, |
| 431 | int64_t right_offset, int64_t length, |
| 432 | int64_t out_offset) { |
| 433 | return BitmapOp<std::bit_or>(pool, left, left_offset, right, right_offset, length, |
| 434 | out_offset); |
| 435 | } |
| 436 | |
| 437 | void BitmapOr(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 438 | int64_t right_offset, int64_t length, int64_t out_offset, uint8_t* out) { |
no outgoing calls