| /rocksdb-6.9/db/ |
| D | memtable_list_test.cc | 226 ASSERT_FALSE(found); in TEST_F() 312 ASSERT_FALSE(found); in TEST_F() 343 ASSERT_FALSE(found); in TEST_F() 413 ASSERT_FALSE(found); in TEST_F() 419 ASSERT_FALSE(found); in TEST_F() 432 ASSERT_TRUE(found); in TEST_F() 475 ASSERT_FALSE(found); in TEST_F() 481 ASSERT_FALSE(found); in TEST_F() 487 ASSERT_FALSE(found); in TEST_F() 500 ASSERT_TRUE(found); in TEST_F() [all …]
|
| D | error_handler.cc | 172 bool found = false; in SetBGError() local 179 found = true; in SetBGError() 183 if (!found) { in SetBGError() 188 found = true; in SetBGError() 192 if (!found) { in SetBGError()
|
| D | version_builder.cc | 328 bool found = false; in CheckConsistencyForDeletes() local 329 for (int l = 0; !found && l < num_levels_; l++) { in CheckConsistencyForDeletes() 335 found = true; in CheckConsistencyForDeletes() 343 for (int l = level + 1; !found && l < num_levels_; l++) { in CheckConsistencyForDeletes() 347 found = true; in CheckConsistencyForDeletes() 353 if (!found) { in CheckConsistencyForDeletes() 357 found = true; in CheckConsistencyForDeletes() 360 if (!found) { in CheckConsistencyForDeletes()
|
| D | db_tailing_iter_test.cc | 376 std::string found = iter->key().ToString(); in TEST_F() local 377 ASSERT_EQ("00002", found); in TEST_F() 381 iter->Seek(found); in TEST_F() 383 ASSERT_EQ(found, iter->key().ToString()); in TEST_F()
|
| D | write_batch.cc | 540 uint32_t found = 0; in Iterate() local 582 found++; in Iterate() 592 found++; in Iterate() 602 found++; in Iterate() 612 found++; in Iterate() 622 found++; in Iterate() 631 found++; in Iterate() 720 found != WriteBatchInternal::Count(wb)) { in Iterate() 1363 bool found = cf_mems_->Seek(column_family_id); in SeekToColumnFamily() local 1364 if (!found) { in SeekToColumnFamily()
|
| D | forward_iterator.cc | 703 bool found; in RenewIterators() local 708 found = false; in RenewIterators() 711 found = true; in RenewIterators() 715 if (found) { in RenewIterators()
|
| /rocksdb-6.9/test_util/ |
| D | fault_injection_test_fs.cc | 25 size_t found = filename.find_last_of("/\\"); in TestFSGetDirName() local 26 if (found == std::string::npos) { in TestFSGetDirName() 29 return filename.substr(0, found); in TestFSGetDirName() 35 size_t found = str.find_last_not_of("/"); in TestFSTrimDirname() local 36 if (found == std::string::npos) { in TestFSTrimDirname() 39 return str.substr(0, found + 1); in TestFSTrimDirname()
|
| D | fault_injection_test_env.cc | 22 size_t found = filename.find_last_of("/\\"); in GetDirName() local 23 if (found == std::string::npos) { in GetDirName() 26 return filename.substr(0, found); in GetDirName() 72 size_t found = str.find_last_not_of("/"); in TrimDirname() local 73 if (found == std::string::npos) { in TrimDirname() 76 return str.substr(0, found + 1); in TrimDirname()
|
| /rocksdb-6.9/java/jmh/ |
| D | LICENSE-HEADER.txt | 2 This source code is licensed under both the GPLv2 (found in the 4 (found in the LICENSE.Apache file in the root directory).
|
| /rocksdb-6.9/tools/ |
| D | db_bench_tool.cc | 4901 found++; in ReadToRowCache() 4982 ++found; in ReadRandomFast() 5078 found++; in ReadRandom() 5526 found++; in MixGraph() 5701 found++; in SeekRandom() 6035 found++; in RandomWithVerify() 6147 ++found; in UpdateRandom() 6199 ++found; in XORUpdateRandom() 6249 ++found; in AppendRandom() 6479 bool found = in GetMergeOperands() local [all …]
|
| /rocksdb-6.9/ |
| D | WINDOWS_PORT.md | 181 * Readwhilewriting: 0.314 micros/op 3187455 ops/sec; 364.8 MB/s (715454999 of 715454999 found) 186 * Readwhilewriting: 0.316 micros/op 3162028 ops/sec; (719576999 of 719576999 found) 194 * Readwhilewriting: 0.246 micros/op 4062669 ops/sec; 464.9 MB/s (915481999 of 915481999 found) 199 * Readwhilewriting: 0.244 micros/op 4106253 ops/sec; (927986999 of 927986999 found) 208 * Readwhilewriting: 0.362 micros/op 2765052 ops/sec; 316.4 MB/s (611549999 of 611549999 found) 213 * Readwhilewriting: 0.317 micros/op 3154941 ops/sec; (708158999 of 708158999 found) 219 * Readwhilewriting: 0.269 micros/op 3716692 ops/sec; 425.3 MB/s (837401999 of 837401999 found) 224 * Readwhilewriting: 0.261 micros/op 3830152 ops/sec; (863482999 of 863482999 found)
|
| D | README.md | 31 … dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2…
|
| D | .clang-format | 1 # Complete list of style options can be found at:
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2014-09-12-cuckoo.markdown | 41 Details for setting up the table format can be found in [GitHub](https://github.com/facebook/rocksd… 56 …f memory accesses. In our experiments, with a hash utilization of 90%, we found that the average n… 74 …found that 85% of keys are accommodated in first Cuckoo Block. Prefetching the first cuckoo block …
|
| /rocksdb-6.9/docs/_docs/ |
| D | faq.md | 20 We benchmarked LevelDB and found that it was unsuitable for our server workloads. The [benchmark re… 22 …found that RocksDB solidly outperforms LevelDB for these IO bound workloads. We found that LevelDB…
|
| /rocksdb-6.9/memtable/ |
| D | memtablerep_bench.cc | 127 bool found; member 305 callback_args->found = true; in callback() 317 verify_args.found = false; in ReadOne() 322 if (verify_args.found) { in ReadOne()
|
| /rocksdb-6.9/cmake/modules/ |
| D | Findgflags.cmake | 6 # gflags_FOUND - True if gflags found.
|
| D | Findlz4.cmake | 6 # lz4_FOUND - True if lz4 found.
|
| D | Findzstd.cmake | 6 # zstd_FOUND - True if zstd found.
|
| D | Findsnappy.cmake | 6 # snappy_FOUND - True if snappy found.
|
| D | FindNUMA.cmake | 6 # NUMA_FOUND - True if NUMA found.
|
| D | FindJeMalloc.cmake | 6 # JeMalloc_FOUND - True if jemalloc found.
|
| D | FindTBB.cmake | 6 # TBB_FOUND - True if TBB found.
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_prepared_txn_db.h | 293 bool found = prep_set_entry != old_commit_map_.end(); variable 294 if (found) { 296 found = std::binary_search(vec.begin(), vec.end(), prep_seq); 311 if (!found) {
|
| /rocksdb-6.9/db_stress_tool/ |
| D | cf_consistency_stress.cc | 141 bool found = s.ok(); in TestGet() local 149 if (!found && s.ok()) { in TestGet() 158 } else if (found && s.IsNotFound()) { in TestGet()
|