Home
last modified time | relevance | path

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

/rocksdb-6.9/table/block_based/
Dblock.cc642 IterKey& first_internal_key = global_seqno_state_->first_internal_key; in DecodeCurrentValue() local
643 first_internal_key.SetInternalKey(decoded_value_.first_internal_key, in DecodeCurrentValue()
646 assert(GetInternalKeySeqno(first_internal_key.GetInternalKey()) == 0); in DecodeCurrentValue()
648 ValueType value_type = ExtractValueType(first_internal_key.GetKey()); in DecodeCurrentValue()
654 first_internal_key.UpdateInternalKey(global_seqno_state_->global_seqno, in DecodeCurrentValue()
656 decoded_value_.first_internal_key = first_internal_key.GetKey(); in DecodeCurrentValue()
Dblock_based_table_iterator.cc65 if (!v.first_internal_key.empty() && !same_block && in SeekImpl()
66 (!target || icomp_.Compare(*target, v.first_internal_key) <= 0) && in SeekImpl()
262 index_iter_->value().first_internal_key) != 0) { in MaterializeCurrentBlock()
325 if (!v.first_internal_key.empty() && in FindBlockForward()
Dblock_based_table_iterator.h59 return index_iter_->value().first_internal_key; in key()
67 return ExtractUserKey(index_iter_->value().first_internal_key); in user_key()
Dblock_test.cc591 v.first_internal_key.ToString()); in TEST_P()
615 v.first_internal_key.ToString()); in TEST_P()
Dblock_based_table_reader.cc2186 if (!v.first_internal_key.empty() && !skip_filters && in Get()
2189 ExtractUserKey(v.first_internal_key)) < 0) { in Get()
2373 (!v.first_internal_key.empty() && !skip_filters && in MultiGet()
2376 ExtractUserKey(v.first_internal_key)) < 0)) { in MultiGet()
2482 if (!v.first_internal_key.empty() && !skip_filters && in MultiGet()
2485 ExtractUserKey(v.first_internal_key)) < 0) { in MultiGet()
Dblock.h591 IterKey first_internal_key; member
/rocksdb-6.9/table/
Dformat.cc105 PutLengthPrefixedSlice(dst, first_internal_key); in EncodeTo()
127 first_internal_key = Slice(); in DecodeFrom()
128 } else if (!GetLengthPrefixedSlice(input, &first_internal_key)) { in DecodeFrom()
Dformat.h85 Slice first_internal_key; member
89 : handle(_handle), first_internal_key(_first_internal_key) {} in IndexValue()