Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 48) sorted by relevance

12

/rocksdb-6.9/db/
Dmemtable_list_test.cc226 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 …]
Derror_handler.cc172 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()
Dversion_builder.cc328 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()
Ddb_tailing_iter_test.cc376 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()
Dwrite_batch.cc540 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()
Dforward_iterator.cc703 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/
Dfault_injection_test_fs.cc25 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()
Dfault_injection_test_env.cc22 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/
DLICENSE-HEADER.txt2 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/
Ddb_bench_tool.cc4901 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/
DWINDOWS_PORT.md181 * 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)
DREADME.md31 … dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2…
D.clang-format1 # Complete list of style options can be found at:
/rocksdb-6.9/docs/_posts/
D2014-09-12-cuckoo.markdown41 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…
74found that 85% of keys are accommodated in first Cuckoo Block. Prefetching the first cuckoo block …
/rocksdb-6.9/docs/_docs/
Dfaq.md20 We benchmarked LevelDB and found that it was unsuitable for our server workloads. The [benchmark re…
22found that RocksDB solidly outperforms LevelDB for these IO bound workloads. We found that LevelDB…
/rocksdb-6.9/memtable/
Dmemtablerep_bench.cc127 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/
DFindgflags.cmake6 # gflags_FOUND - True if gflags found.
DFindlz4.cmake6 # lz4_FOUND - True if lz4 found.
DFindzstd.cmake6 # zstd_FOUND - True if zstd found.
DFindsnappy.cmake6 # snappy_FOUND - True if snappy found.
DFindNUMA.cmake6 # NUMA_FOUND - True if NUMA found.
DFindJeMalloc.cmake6 # JeMalloc_FOUND - True if jemalloc found.
DFindTBB.cmake6 # TBB_FOUND - True if TBB found.
/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.h293 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/
Dcf_consistency_stress.cc141 bool found = s.ok(); in TestGet() local
149 if (!found && s.ok()) { in TestGet()
158 } else if (found && s.IsNotFound()) { in TestGet()

12