| 440 | } |
| 441 | |
| 442 | Result<std::shared_ptr<Buffer>> BitmapXor(MemoryPool* pool, const uint8_t* left, |
| 443 | int64_t left_offset, const uint8_t* right, |
| 444 | int64_t right_offset, int64_t length, |
| 445 | int64_t out_offset) { |
| 446 | return BitmapOp<std::bit_xor>(pool, left, left_offset, right, right_offset, length, |
| 447 | out_offset); |
| 448 | } |
| 449 | |
| 450 | void BitmapXor(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 451 | int64_t right_offset, int64_t length, int64_t out_offset, uint8_t* out) { |