Home
last modified time | relevance | path

Searched refs:CuckooTablePropertyNames (Results 1 – 5 of 5) sorted by relevance

/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_builder.cc28 const std::string CuckooTablePropertyNames::kEmptyKey =
30 const std::string CuckooTablePropertyNames::kNumHashFunc =
32 const std::string CuckooTablePropertyNames::kHashTableSize =
34 const std::string CuckooTablePropertyNames::kValueLength =
36 const std::string CuckooTablePropertyNames::kIsLastLevel =
295 CuckooTablePropertyNames::kValueLength].assign( in Finish()
329 CuckooTablePropertyNames::kNumHashFunc].assign( in Finish()
333 CuckooTablePropertyNames::kHashTableSize].assign( in Finish()
337 CuckooTablePropertyNames::kIsLastLevel].assign( in Finish()
349 CuckooTablePropertyNames::kUseModuleHash].assign( in Finish()
[all …]
Dcuckoo_table_reader.cc67 auto hash_funs = user_props.find(CuckooTablePropertyNames::kNumHashFunc); in CuckooTableReader()
73 auto unused_key = user_props.find(CuckooTablePropertyNames::kEmptyKey); in CuckooTableReader()
81 auto user_key_len = user_props.find(CuckooTablePropertyNames::kUserKeyLength); in CuckooTableReader()
89 auto value_length = user_props.find(CuckooTablePropertyNames::kValueLength); in CuckooTableReader()
99 CuckooTablePropertyNames::kHashTableSize); in CuckooTableReader()
107 auto is_last_level = user_props.find(CuckooTablePropertyNames::kIsLastLevel); in CuckooTableReader()
115 CuckooTablePropertyNames::kIdentityAsFirstHash); in CuckooTableReader()
124 CuckooTablePropertyNames::kUseModuleHash); in CuckooTableReader()
132 CuckooTablePropertyNames::kCuckooBlockSize); in CuckooTableReader()
Dcuckoo_table_builder_test.cc75 CuckooTablePropertyNames::kEmptyKey]; in CheckFileContents()
81 CuckooTablePropertyNames::kValueLength].data()); in CheckFileContents()
86 CuckooTablePropertyNames::kHashTableSize].data()); in CheckFileContents()
90 CuckooTablePropertyNames::kNumHashFunc].data()); in CheckFileContents()
94 CuckooTablePropertyNames::kCuckooBlockSize].data()); in CheckFileContents()
98 CuckooTablePropertyNames::kIsLastLevel].data()); in CheckFileContents()
Dcuckoo_table_reader_test.cc375 CuckooTablePropertyNames::kEmptyKey); in TEST_F()
491 user_props.at(CuckooTablePropertyNames::kNumHashFunc).data()); in ReadKeys()
493 user_props.at(CuckooTablePropertyNames::kHashTableSize).data()); in ReadKeys()
/rocksdb-6.9/include/rocksdb/
Dtable.h424 struct CuckooTablePropertyNames { struct