Lines Matching refs:impl_
63 : impl_(impl), in HashTableBenchmark()
103 bool status = impl_->Insert(k, tmp); in RunWrite()
114 bool status = impl_->Lookup(k, &s); in RunRead()
124 bool status = impl_->Erase(k); in RunErase()
142 bool status = impl_->Insert(i, std::string(1000, i % 255)); in Prepop()
149 bool status = impl_->Insert(insert_key_++, std::string(1000, 'x')); in Prepop()
175 HashTableImpl<size_t, std::string>* impl_; // Implementation to test member in ROCKSDB_NAMESPACE::HashTableBenchmark
230 return impl_.Insert(n); in Insert()
235 return impl_.Erase(n, nullptr); in Erase()
241 bool status = impl_.Find(n, &n, &rlock); in Lookup()
269 HashTable<Node, Hash, Equal> impl_; member in ROCKSDB_NAMESPACE::GranularLockImpl