Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/main/java/org/rocksdb/util/
DBytewiseComparator.java69 final int startByte = start.get(diffIndex) & 0xff;
71 if (startByte >= limitByte) {
76 assert(startByte < limitByte);
78 if (diffIndex < limit.remaining() - 1 || startByte + 1 < limitByte) {
DReverseBytewiseComparator.java64 final int startByte = start.get(diffIndex) & 0xff; in findShortestSeparator() local
66 if (startByte > limitByte && diffIndex < start.remaining() - 1) { in findShortestSeparator()