OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InternalKey
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/db/
version_edit.h
22
InternalKey
smallest; // Smallest internal key served by table
23
InternalKey
largest; // Largest internal key served by table
55
void SetCompactPointer(int level, const
InternalKey
& key) {
64
const
InternalKey
& smallest,
65
const
InternalKey
& largest) {
100
std::vector< std::pair<int,
InternalKey
> > compact_pointers_;
dbformat.h
46
class
InternalKey
;
127
int Compare(const
InternalKey
& a, const
InternalKey
& b) const;
144
class
InternalKey
{
148
InternalKey
() { } // Leave rep_ as empty to indicate it is invalid
149
InternalKey
(const Slice& user_key, SequenceNumber s, ValueType t) {
172
const
InternalKey
& a, const
InternalKey
& b) const {
213
// The suffix starting with "userkey" can be used as an
InternalKey
.
version_edit_test.cc
29
InternalKey
("foo", kBig + 500 + i, kTypeValue),
30
InternalKey
("zoo", kBig + 600 + i, kTypeDeletion));
32
edit.SetCompactPointer(i,
InternalKey
("x", kBig + 900 + i, kTypeValue));
version_set.h
94
const
InternalKey
* begin, // NULL means before all keys
95
const
InternalKey
* end, // NULL means after all keys
239
const
InternalKey
* begin,
240
const
InternalKey
* end);
262
uint64_t ApproximateOffsetOf(Version* v, const
InternalKey
& key);
280
InternalKey
* smallest,
281
InternalKey
* largest);
285
InternalKey
* smallest,
286
InternalKey
* largest);
313
// Either an empty string, or a valid
InternalKey
[
all
...]
db_impl.h
165
const
InternalKey
* begin; // NULL means beginning of key range
166
const
InternalKey
* end; // NULL means end of key range
167
InternalKey
tmp_storage; // Used to keep track of compaction progress
version_set_test.cc
30
f->smallest =
InternalKey
(smallest, smallest_seq, kTypeValue);
31
f->largest =
InternalKey
(largest, largest_seq, kTypeValue);
36
InternalKey
target(key, 100, kTypeValue);
version_set.cc
151
InternalKey
small(*smallest_user_key, kMaxSequenceNumber,kValueTypeForSeek);
514
InternalKey
start(smallest_user_key, kMaxSequenceNumber, kValueTypeForSeek);
515
InternalKey
limit(largest_user_key, 0, static_cast<ValueType>(0));
538
const
InternalKey
* begin,
539
const
InternalKey
* end,
750
const
InternalKey
& prev_end = v->files_[level][i-1]->largest;
751
const
InternalKey
& this_begin = v->files_[level][i]->smallest;
[
all
...]
version_edit.cc
88
static bool GetInternalKey(Slice* input,
InternalKey
* dst) {
120
InternalKey
key;
dbformat.cc
34
std::string
InternalKey
::DebugString() const {
db_impl.cc
64
InternalKey
smallest, largest;
557
InternalKey
begin_storage, end_storage;
565
begin_storage =
InternalKey
(*begin, kMaxSequenceNumber, kValueTypeForSeek);
571
end_storage =
InternalKey
(*end, 0, static_cast<ValueType>(0));
665
InternalKey
manual_end;
[
all
...]
db_test.cc
338
InternalKey
target(user_key, kMaxSequenceNumber, kTypeValue);
[
all
...]
Completed in 2467 milliseconds