Home
last modified time | relevance | path

Searched refs:prefix_length (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/db/compaction/
Dcompaction_job_stats_test.cc561 const Slice& src, size_t prefix_length, std::string* dst) { in CopyPrefix() argument
562 assert(prefix_length > 0); in CopyPrefix()
563 size_t length = src.size() > prefix_length ? prefix_length : src.size(); in CopyPrefix()
Dcompaction_job.cc1583 void CopyPrefix(const Slice& src, size_t prefix_length, std::string* dst) { in CopyPrefix() argument
1584 assert(prefix_length > 0); in CopyPrefix()
1585 size_t length = src.size() > prefix_length ? prefix_length : src.size(); in CopyPrefix()
/rocksdb-6.9/options/
Doptions_helper.cc428 int prefix_length = ParseInt(trim(value.substr(kFixedPrefixName.size()))); in ParseSliceTransformHelper() local
429 slice_transform->reset(NewFixedPrefixTransform(prefix_length)); in ParseSliceTransformHelper()
433 int prefix_length = in ParseSliceTransformHelper() local
435 slice_transform->reset(NewCappedPrefixTransform(prefix_length)); in ParseSliceTransformHelper()
/rocksdb-6.9/memtable/
Dmemtablerep_bench.cc112 DEFINE_int32(prefix_length, 8,