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

Function Insert

cpp/src/arrow/acero/bloom_filter.h:163–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161 Status CreateEmpty(int64_t num_rows_to_insert, MemoryPool* pool);
162
163 inline void Insert(uint64_t hash) {
164 uint64_t m = mask(hash);
165 uint64_t& b = blocks_[block_id(hash)];
166 b |= m;
167 }
168
169 void Insert(int64_t hardware_flags, int64_t num_rows, const uint32_t* hashes);
170 void Insert(int64_t hardware_flags, int64_t num_rows, const uint64_t* hashes);

Callers 2

InsertImpMethod · 0.85
AppendMethod · 0.85

Calls 2

maskFunction · 0.85
block_idFunction · 0.85

Tested by

no test coverage detected