| 118 | |
| 119 | template <typename T> |
| 120 | void BlockedBloomFilter::InsertImp(int64_t num_rows, const T* hashes) { |
| 121 | for (int64_t i = 0; i < num_rows; ++i) { |
| 122 | Insert(hashes[i]); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | void BlockedBloomFilter::Insert(int64_t hardware_flags, int64_t num_rows, |
| 127 | const uint32_t* hashes) { |