Home
last modified time | relevance | path

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

/rocksdb-6.9/table/plain/
Dplain_table_key_coding.cc51 inline Status PlainTableKeyDecoder::DecodeSize(uint32_t start_offset, in DecodeSize() argument
56 bool success = file_reader_.Read(start_offset, 1, &next_byte_slice); in DecodeSize()
71 success = file_reader_.ReadVarint32(start_offset + 1, &extra_size, in DecodeSize()
290 Status PlainTableKeyDecoder::NextPlainEncodingKey(uint32_t start_offset, in NextPlainEncodingKey() argument
303 file_reader_.ReadVarint32(start_offset, &tmp_size, &tmp_read); in NextPlainEncodingKey()
351 s = DecodeSize(start_offset + *bytes_read, &entry_type, &size, in NextPrefixEncodingKey()
450 Status PlainTableKeyDecoder::NextKey(uint32_t start_offset, in NextKey() argument
461 bool success = file_reader_.ReadVarint32(start_offset + *bytes_read, in NextKey()
480 Status PlainTableKeyDecoder::NextKeyNoValue(uint32_t start_offset, in NextKeyNoValue() argument
491 return NextPlainEncodingKey(start_offset, parsed_key, internal_key, in NextKeyNoValue()
[all …]
Dplain_table_key_coding.h158 Status NextKey(uint32_t start_offset, ParsedInternalKey* parsed_key,
162 Status NextKeyNoValue(uint32_t start_offset, ParsedInternalKey* parsed_key,
176 Status NextPlainEncodingKey(uint32_t start_offset,
180 Status NextPrefixEncodingKey(uint32_t start_offset,
187 inline Status DecodeSize(uint32_t start_offset,
/rocksdb-6.9/table/block_based/
Dblock.h76 void Mark(uint32_t start_offset, uint32_t end_offset) { in Mark() argument
77 assert(end_offset >= start_offset); in Mark()
80 (start_offset + (1 << bytes_per_bit_pow_) - rnd_ - 1) >> in Mark()
Dblock_test.cc224 void Mark(size_t start_offset, size_t end_offset) { in Mark() argument
225 assert(end_offset >= start_offset); in Mark()
226 marked_ranges_.emplace(end_offset, start_offset); in Mark()
Dblock_based_table_reader.cc2967 uint64_t start_offset = ApproximateOffsetOf(*index_iter); in ApproximateSize() local
2971 assert(end_offset >= start_offset); in ApproximateSize()
2972 return end_offset - start_offset; in ApproximateSize()
/rocksdb-6.9/db/
Dversion_set.cc5459 uint64_t start_offset = ApproximateOffsetOf(v, f, start, caller); in ApproximateSize() local
5460 assert(f.fd.GetFileSize() >= start_offset); in ApproximateSize()
5461 return f.fd.GetFileSize() - start_offset; in ApproximateSize()