Home
last modified time | relevance | path

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

/rocksdb-6.9/java/benchmark/src/main/java/org/rocksdb/benchmark/
DDbBenchmark.java1574 int baseLength = value.length; in compressibleBytes() local
1576 baseLength = (int) (compressionRatio_ * value.length + 0.5); in compressibleBytes()
1578 if (baseLength <= 0) { in compressibleBytes()
1579 baseLength = 1; in compressibleBytes()
1582 for (pos = 0; pos < baseLength; ++pos) { in compressibleBytes()
1587 Math.min(baseLength, value.length - pos)); in compressibleBytes()
1588 pos += baseLength; in compressibleBytes()