| 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); |