| 414 | } // namespace |
| 415 | |
| 416 | Result<std::shared_ptr<Buffer>> BitmapAnd(MemoryPool* pool, const uint8_t* left, |
| 417 | int64_t left_offset, const uint8_t* right, |
| 418 | int64_t right_offset, int64_t length, |
| 419 | int64_t out_offset) { |
| 420 | return BitmapOp<std::bit_and>(pool, left, left_offset, right, right_offset, length, |
| 421 | out_offset); |
| 422 | } |
| 423 | |
| 424 | void BitmapAnd(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 425 | int64_t right_offset, int64_t length, int64_t out_offset, uint8_t* out) { |
no outgoing calls