Home
last modified time | relevance | path

Searched refs:cs (Results 1 – 8 of 8) sorted by relevance

/rocksdb-6.9/tools/
Ddbench_monitor47 cs [cache_size]
74 : ${cs:=$((1*1024*1024*1024))};
84 …-benchmarks="$benches" --reads="$reads" --threads="$threads" --cache_size=$cs --value_size=$vsize…
88 …-benchmarks="$benches" --reads="$reads" --threads="$threads" --cache_size=$cs --value_size=$vsize…
Drun_leveldb.sh55 cs=${CACHE_BYTES:-$(( 1 * G ))}
83 CACHE_SIZE=$cs"
Dldb_cmd_test.cc248 Status cs = VerifyChecksum(a_file); in VerifyEachFileChecksum() local
249 if (!cs.ok()) { in VerifyEachFileChecksum()
250 return cs; in VerifyEachFileChecksum()
Drun_flash_bench.sh77 cs=${CACHE_BYTES:-$(( 1 * G ))}
115 CACHE_SIZE=$cs"
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_pysim.py1526 def parse_cache_size(cs): argument
1527 cs = cs.replace("\n", "")
1528 if cs[-1] == "M":
1529 return int(cs[: len(cs) - 1]) * 1024 * 1024
1530 if cs[-1] == "G":
1531 return int(cs[: len(cs) - 1]) * 1024 * 1024 * 1024
1532 if cs[-1] == "T":
1533 return int(cs[: len(cs) - 1]) * 1024 * 1024 * 1024 * 1024
1534 return int(cs)
/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.h345 CommitEntry(uint64_t ps, uint64_t cs) : prep_seq(ps), commit_seq(cs) {} in CommitEntry()
388 CommitEntry64b(const uint64_t ps, const uint64_t cs, in CommitEntry64b()
392 assert(ps <= cs); in CommitEntry64b()
393 uint64_t delta = cs - ps + 1; // make initialized delta always >= 1 in CommitEntry64b()
401 ToString(cs) + " prepare_seq is " + ToString(ps)); in CommitEntry64b()
/rocksdb-6.9/docs/_posts/
D2015-11-16-analysis-file-read-latency-by-level.markdown234cs=1048576; of=500000; si=1000000; ./db_bench –benchmarks=fillseq –disable_seek_compaction=1 –mmap…
237cs=1048576; of=500000; si=1000000; ./db_bench –benchmarks=readrandom –disable_seek_compaction=1 –m…
/rocksdb-6.9/docs/_sass/
D_syntax-highlighting.scss16 .rougeHighlight .cs { color: #859900 } /* Comment.Special */ class