Searched refs:V (Results 1 – 6 of 6) sorted by relevance
| /rocksdb-6.9/third-party/folly/folly/ |
| D | Optional.h | 509 template <class V> 510 bool operator<(const Optional<V>&, const V& other) = delete; 511 template <class V> 512 bool operator<=(const Optional<V>&, const V& other) = delete; 513 template <class V> 514 bool operator>=(const Optional<V>&, const V& other) = delete; 516 bool operator>(const Optional<V>&, const V& other) = delete; 518 bool operator<(const V& other, const Optional<V>&) = delete; 520 bool operator<=(const V& other, const Optional<V>&) = delete; 522 bool operator>=(const V& other, const Optional<V>&) = delete; [all …]
|
| /rocksdb-6.9/util/ |
| D | hash_map.h | 26 template <typename K, typename V, size_t size = 128> 28 std::array<autovector<std::pair<K, V>, 1>, size> table_; 35 [key](const std::pair<K, V>& p) { return p.first == key; }); in Contains() 39 void Insert(K key, const V& value) { in Insert() 48 [key](const std::pair<K, V>& p) { return p.first == key; }); in Delete() 58 V& Get(K key) { in Get() 62 [key](const std::pair<K, V>& p) { return p.first == key; }); in Get()
|
| /rocksdb-6.9/ |
| D | .travis.yml | 208 OPT=-DTRAVIS V=1 ROCKSDBTESTS_END=db_block_cache_test make -j4 all_but_some_tests check_some 211 …OPT=-DTRAVIS V=1 ROCKSDBTESTS_START=db_block_cache_test ROCKSDBTESTS_END=db_iter_test make -j4 che… 214 …B_NAMESPACE=alternative_rocksdb_ns" V=1 make -j4 tools && OPT="-DTRAVIS -DROCKSDB_NAMESPACE=altern… 217 …OPT=-DTRAVIS V=1 ROCKSDBTESTS_START=options_file_test ROCKSDBTESTS_END=write_prepared_transaction_… 220 OPT=-DTRAVIS V=1 ROCKSDBTESTS_START=write_prepared_transaction_test make -j4 check_some 225 OPT=-DTRAVIS V=1 make rocksdbjava jtest 228 OPT='-DTRAVIS -DROCKSDB_LITE' V=1 make -j4 static_lib tools 231 OPT=-DTRAVIS V=1 make -j4 static_lib && cd examples && make -j4
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/util/ |
| D | BytewiseComparatorTest.java | 390 private static class KVIter<K, V> implements RocksIteratorInterface { 392 private final List<Map.Entry<K, V>> entries; 399 public KVIter(final TreeMap<K, V> map) { 501 public V value() { 503 return (V)"";
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.h | 2137 template <class T, class V> 2138 static void ClipToRange(T* ptr, V minvalue, V maxvalue) { in ClipToRange() 2139 if (static_cast<V>(*ptr) > maxvalue) *ptr = maxvalue; in ClipToRange() 2140 if (static_cast<V>(*ptr) < minvalue) *ptr = minvalue; in ClipToRange()
|
| /rocksdb-6.9/java/rocksjni/ |
| D | portal.h | 2434 template <typename K, typename V, typename JK, typename JV> 2435 using FnMapKV = std::function<std::unique_ptr<std::pair<JK, JV>> (const std::pair<K, V>&)>; 2442 template<class iterator_type, typename K, typename V> 2443 …ject jhash_map, iterator_type iterator, iterator_type end, const FnMapKV<K, V, jobject, jobject> &… in putAll() argument
|