| 444 | } // namespace |
| 445 | |
| 446 | Result<std::shared_ptr<Buffer>> BitmapAnd(MemoryPool* pool, const uint8_t* left, |
| 447 | int64_t left_offset, const uint8_t* right, |
| 448 | int64_t right_offset, int64_t length, |
| 449 | int64_t out_offset) { |
| 450 | return BitmapOp<std::bit_and>(pool, left, left_offset, right, right_offset, length, |
| 451 | out_offset); |
| 452 | } |
| 453 | |
| 454 | void BitmapAnd(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 455 | int64_t right_offset, int64_t length, int64_t out_offset, uint8_t* out) { |
no outgoing calls