| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | BlockBasedTableConfigTest.java | 62 assertThat(IndexType.values().length).isEqualTo(3); in indexType() 63 blockBasedTableConfig.setIndexType(IndexType.kHashSearch); in indexType() 65 IndexType.kHashSearch)); in indexType() 66 assertThat(IndexType.valueOf("kBinarySearch")).isNotNull(); in indexType() 67 blockBasedTableConfig.setIndexType(IndexType.valueOf("kBinarySearch")); in indexType() 69 IndexType.kBinarySearch)); in indexType()
|
| /rocksdb-6.9/test_util/ |
| D | testutil.cc | 206 using IndexType = BlockBasedTableOptions::IndexType; in RandomBlockBasedTableOptions() typedef 207 const std::array<IndexType, 4> index_types = { in RandomBlockBasedTableOptions() 208 {IndexType::kBinarySearch, IndexType::kHashSearch, in RandomBlockBasedTableOptions() 209 IndexType::kTwoLevelIndexSearch, IndexType::kBinarySearchWithFirstKey}}; in RandomBlockBasedTableOptions()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | BlockBasedTableConfig.java | 21 indexType = IndexType.kBinarySearch; in BlockBasedTableConfig() 155 public IndexType indexType() { in indexType() 166 final IndexType indexType) { in setIndexType() 957 private IndexType indexType;
|
| D | IndexType.java | 11 public enum IndexType { enum 36 IndexType(byte value) { in IndexType() method in IndexType
|
| /rocksdb-6.9/utilities/persistent_cache/ |
| D | volatile_tier_impl.h | 128 IndexType; typedef 134 IndexType index_; // in-memory cache
|
| /rocksdb-6.9/include/rocksdb/ |
| D | table.h | 93 enum IndexType : char { enum 124 IndexType index_type = kBinarySearch;
|
| /rocksdb-6.9/table/block_based/ |
| D | data_block_hash_index_test.cc | 289 ASSERT_EQ(reader.IndexType(), in TEST() 311 ASSERT_EQ(reader.IndexType(), in TEST() 342 ASSERT_EQ(reader.IndexType(), in TEST() 367 ASSERT_EQ(reader.IndexType(), in TEST()
|
| D | block_based_table_reader.h | 485 index_type(BlockBasedTableOptions::IndexType::kBinarySearch), in Rep() 526 BlockBasedTableOptions::IndexType index_type;
|
| D | block_based_table_builder.cc | 57 typedef BlockBasedTableOptions::IndexType IndexType; typedef 231 BlockBasedTableOptions::IndexType index_type, bool whole_key_filtering, in BlockBasedTablePropertiesCollector() 274 BlockBasedTableOptions::IndexType index_type_;
|
| D | index_builder.cc | 28 BlockBasedTableOptions::IndexType index_type, in CreateIndexBuilder()
|
| D | block.cc | 849 BlockBasedTableOptions::DataBlockIndexType Block::IndexType() const { in IndexType() function in ROCKSDB_NAMESPACE::Block 881 switch (IndexType()) { in Block()
|
| D | index_builder.h | 38 BlockBasedTableOptions::IndexType index_type,
|
| D | block.h | 169 BlockBasedTableOptions::DataBlockIndexType IndexType() const;
|
| D | block_based_table_reader.cc | 846 rep_->index_type = static_cast<BlockBasedTableOptions::IndexType>( in ReadPropertiesBlock() 941 BlockBasedTableOptions::IndexType index_type = rep_->index_type; in PrefetchIndexAndFilterBlocks()
|
| /rocksdb-6.9/options/ |
| D | options_helper.cc | 534 return ParseEnum<BlockBasedTableOptions::IndexType>( in ParseOptionHelper() 536 reinterpret_cast<BlockBasedTableOptions::IndexType*>(opt_address)); in ParseOptionHelper() 731 return SerializeEnum<BlockBasedTableOptions::IndexType>( in SerializeSingleOptionHelper() 733 *reinterpret_cast<const BlockBasedTableOptions::IndexType*>( in SerializeSingleOptionHelper() 1690 std::unordered_map<std::string, BlockBasedTableOptions::IndexType> 1692 {"kBinarySearch", BlockBasedTableOptions::IndexType::kBinarySearch}, 1693 {"kHashSearch", BlockBasedTableOptions::IndexType::kHashSearch}, 1695 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch}, 1697 BlockBasedTableOptions::IndexType::kBinarySearchWithFirstKey}};
|
| D | options_helper.h | 169 static std::unordered_map<std::string, BlockBasedTableOptions::IndexType>
|
| D | options_parser.cc | 570 *reinterpret_cast<const BlockBasedTableOptions::IndexType*>( in AreEqualOptions() 572 *reinterpret_cast<const BlockBasedTableOptions::IndexType*>(offset2)); in AreEqualOptions()
|
| D | options.cc | 503 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in OptimizeForSmallDb()
|
| /rocksdb-6.9/db/ |
| D | db_bloom_filter_test.cc | 159 bbto.index_type = BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_F() 225 bbto.index_type = BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_F() 278 bbto.index_type = BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_F() 443 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_P() 595 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_F() 615 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in TEST_F() 1065 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in BloomStatsTestWithParam()
|
| D | db_iterator_test.cc | 1139 BlockBasedTableOptions::IndexType::kBinarySearchWithFirstKey; in TEST_P() 1230 BlockBasedTableOptions::IndexType::kBinarySearchWithFirstKey; in TEST_P()
|
| D | db_test_util.cc | 434 BlockBasedTableOptions::IndexType::kTwoLevelIndexSearch; in GetOptions()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-03-02-rocksdb-5-2-1-released.markdown | 15 …rtitions. The feature can be enabled by setting kTwoLevelIndexSearch as IndexType and configuring …
|
| /rocksdb-6.9/java/rocksjni/ |
| D | portal.h | 6246 const ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType& index_type) { in toJavaIndexType() 6248 case ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType::kBinarySearch: in toJavaIndexType() 6250 case ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType::kHashSearch: in toJavaIndexType() 6252 case ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toJavaIndexType() 6255 case ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toJavaIndexType() 6265 static ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType toCppIndexType( in toCppIndexType() 6269 return ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toCppIndexType() 6272 return ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toCppIndexType() 6275 return ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toCppIndexType() 6278 return ROCKSDB_NAMESPACE::BlockBasedTableOptions::IndexType:: in toCppIndexType() [all …]
|
| /rocksdb-6.9/tools/ |
| D | sst_dump_tool.cc | 301 auto index_type_on_file = static_cast<BlockBasedTableOptions::IndexType>( in SetTableOptionsByMagicNumber() 304 BlockBasedTableOptions::IndexType::kHashSearch) { in SetTableOptionsByMagicNumber()
|
| /rocksdb-6.9/java/ |
| D | CMakeLists.txt | 148 src/main/java/org/rocksdb/IndexType.java
|