Home
last modified time | relevance | path

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

/rocksdb-6.9/table/
Dmultiget_context.h20 struct KeyContext { struct
35 KeyContext(ColumnFamilyHandle* col_family, const Slice& user_key, in KeyContext() argument
48 KeyContext() = default;
94 MultiGetContext(autovector<KeyContext*, MAX_BATCH_SIZE>* sorted_keys, in MultiGetContext() argument
125 std::array<KeyContext*, MAX_BATCH_SIZE> sorted_keys_;
150 typedef KeyContext value_type;
151 typedef KeyContext& reference;
152 typedef KeyContext* pointer;
185 KeyContext& operator*() {
190 KeyContext* operator->() {
/rocksdb-6.9/utilities/write_batch_with_index/
Dwrite_batch_with_index.cc944 autovector<KeyContext, MultiGetContext::MAX_BATCH_SIZE> key_context; in MultiGetFromBatchAndDB()
945 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE> sorted_keys; in MultiGetFromBatchAndDB()
990 for (KeyContext& key : key_context) { in MultiGetFromBatchAndDB()
1005 KeyContext& key = *iter; in MultiGetFromBatchAndDB()
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc1968 autovector<KeyContext, MultiGetContext::MAX_BATCH_SIZE> key_context; in MultiGet()
1969 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE> sorted_keys; in MultiGet()
1985 KeyContext* key_ctx = sorted_keys[i]; in MultiGet()
2028 inline bool operator()(const KeyContext* lhs, const KeyContext* rhs) { in operator ()()
2055 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE>* sorted_keys) { in PrepareMultiGetKeys() argument
2060 KeyContext* lhs = (*sorted_keys)[index - 1]; in PrepareMultiGetKeys()
2061 KeyContext* rhs = (*sorted_keys)[index]; in PrepareMultiGetKeys()
2102 autovector<KeyContext, MultiGetContext::MAX_BATCH_SIZE> key_context; in MultiGet()
2103 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE> sorted_keys; in MultiGet()
2170 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE>* sorted_keys, in MultiGetImpl() argument
[all …]
Ddb_impl.h229 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE>* sorted_keys);
1701 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE>* key_ptrs);
1768 autovector<KeyContext*, MultiGetContext::MAX_BATCH_SIZE>* sorted_keys,
/rocksdb-6.9/db/
Dtable_cache.cc451 KeyContext& first_key = *table_range.begin(); in MultiGet()