| /rocksdb-6.9/utilities/cassandra/ |
| D | merge_operator.cc | 32 for (auto& operand : merge_in.operand_list) { in FullMergeV2() local 33 row_values.push_back(RowValue::Deserialize(operand.data(), operand.size())); in FullMergeV2() 52 for (auto& operand : operand_list) { in PartialMergeMulti() local 53 row_values.push_back(RowValue::Deserialize(operand.data(), operand.size())); in PartialMergeMulti()
|
| /rocksdb-6.9/db/ |
| D | merge_operator.cc | 38 auto& operand = operand_list[i]; in PartialMergeMulti() local 40 if (!PartialMerge(key, temp_slice, operand, &temp_value, logger)) { in PartialMergeMulti() 60 for (const auto& operand : merge_in.operand_list) { in FullMergeV2() local 62 if (!Merge(merge_in.key, existing_value, operand, &temp_value, in FullMergeV2()
|
| D | c.cc | 352 Slice operand(merge_in.operand_list[i]); in FullMergeV2() local 353 operand_pointers[i] = operand.data(); in FullMergeV2() 354 operand_sizes[i] = operand.size(); in FullMergeV2() 389 Slice operand(operand_list[i]); in PartialMergeMulti() local 390 operand_pointers[i] = operand.data(); in PartialMergeMulti() 391 operand_sizes[i] = operand.size(); in PartialMergeMulti()
|
| /rocksdb-6.9/utilities/ttl/ |
| D | db_ttl_impl.h | 257 for (const auto& operand : merge_in.operand_list) { in FullMergeV2() local 258 if (operand.size() < ts_len) { in FullMergeV2() 264 operands_without_ts.push_back(operand); in FullMergeV2() 320 for (const auto& operand : operand_list) { in PartialMergeMulti() local 321 if (operand.size() < ts_len) { in PartialMergeMulti() 328 Slice(operand.data(), operand.size() - ts_len)); in PartialMergeMulti()
|
| /rocksdb-6.9/utilities/merge_operators/ |
| D | max.cc | 57 for (const auto& operand : operand_list) { in PartialMergeMulti() local 58 if (max.compare(operand) < 0) { in PartialMergeMulti() 59 max = operand; in PartialMergeMulti()
|
| D | uint64add.cc | 30 uint64_t operand = DecodeInteger(value, logger); in Merge() local 34 PutFixed64(new_value, orig_value + operand); in Merge()
|
| D | sortlist.cc | 57 void SortList::MakeVector(std::vector<int>& operand, Slice slice) const { in MakeVector() argument 61 operand.push_back(std::stoi(std::string(begin, slice.data_))); in MakeVector()
|
| D | sortlist.h | 32 void MakeVector(std::vector<int>& operand, Slice slice) const;
|
| /rocksdb-6.9/utilities/merge_operators/string_append/ |
| D | stringappend2.cc | 89 for (const auto& operand : operand_list) { in _AssocPartialMergeMulti() local 90 size += operand.size(); in _AssocPartialMergeMulti()
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_iterator_test.cc | 602 for (auto& operand : merge_in.operand_list) { in TEST_P() local 603 temp_value.append(operand.ToString()); in TEST_P() 624 for (auto& operand : operand_list) { in TEST_P() local 625 temp_value.append(operand.ToString()); in TEST_P()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-09-28-rocksdb-5-8-released.markdown | 17 * Allow merge operator to be called even with a single merge operand during compactions, by appropr…
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 98 …, or internally on ::Prev, or within ::Seek if the return value involves Delete or a Merge operand. 153 …, or internally on ::Prev, or within ::Seek if the return value involves Delete or a Merge operand. 589 * Allow merge operator to be called even with a single merge operand during compactions, by appropr… 853 …erand() that RocksDB applies to every merge operand during compaction to decide whether to filter …
|
| /rocksdb-6.9/tools/ |
| D | db_bench_tool.cc | 6261 Slice operand = gen.Generate(); in AppendRandom() local 6266 value.append(operand.data(), operand.size()); in AppendRandom()
|