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

Function ComputeBitmapHash

cpp/src/arrow/util/hashing.cc:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77} // namespace
78
79hash_t ComputeBitmapHash(const uint8_t* bitmap, hash_t seed, int64_t bits_offset,
80 int64_t num_bits) {
81 DCHECK_GE(bits_offset, 0);
82 DCHECK_GE(num_bits, 0);
83 return MurmurHashBitmap64(bitmap, seed, bits_offset, num_bits);
84}
85
86} // namespace internal
87} // namespace arrow

Callers 2

ArrayHashMethod · 0.85
HashDataBitmapFunction · 0.85

Calls 1

MurmurHashBitmap64Function · 0.85

Tested by 1

HashDataBitmapFunction · 0.68