| 457 | } |
| 458 | |
| 459 | Result<std::shared_ptr<Buffer>> BitmapOr(MemoryPool* pool, const uint8_t* left, |
| 460 | int64_t left_offset, const uint8_t* right, |
| 461 | int64_t right_offset, int64_t length, |
| 462 | int64_t out_offset) { |
| 463 | return BitmapOp<std::bit_or>(pool, left, left_offset, right, right_offset, length, |
| 464 | out_offset); |
| 465 | } |
| 466 | |
| 467 | void BitmapOr(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 468 | int64_t right_offset, int64_t length, int64_t out_offset, uint8_t* out) { |
no outgoing calls