MCPcopy Create free account
hub / github.com/apache/arrow / BitmapXor

Function BitmapXor

cpp/src/arrow/util/bitmap_ops.cc:442–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

440}
441
442Result<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
450void 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) {

Callers 2

CallMethod · 0.85
CallMethod · 0.85

Calls

no outgoing calls

Tested by 1

CallMethod · 0.68