| /rocksdb-6.9/include/rocksdb/ |
| D | slice.h | 261 size_t off = 0; in difference_offset() local 263 for (; off < len; off++) { in difference_offset() 264 if (data_[off] != b.data_[off]) break; in difference_offset() 266 return off; in difference_offset()
|
| /rocksdb-6.9/utilities/ |
| D | env_mirror.cc | 30 size_t off = 0; in Read() local 35 assert(memcmp(bscratch, scratch + off, bslice.size()) == 0); in Read() 36 off += bslice.size(); in Read() 74 size_t off = 0; in Read() local 77 Status bs = b_->Read(offset + off, left, &bslice, bscratch); in Read() 79 assert(memcmp(bscratch, scratch + off, bslice.size()) == 0); in Read() 80 off += bslice.size(); in Read()
|
| /rocksdb-6.9/tools/rdb/ |
| D | API.md | 19 # left off. 30 # This argument can be left off for the default 44 # in. This argument can be left off for the 57 # This argument can be left off for the default 73 # This argument can be left off for the default
|
| /rocksdb-6.9/file/ |
| D | read_write_util.cc | 63 bool IsFileSectorAligned(const size_t off, size_t sector_size) { in IsFileSectorAligned() argument 64 return off % sector_size == 0; in IsFileSectorAligned()
|
| D | read_write_util.h | 32 bool IsFileSectorAligned(const size_t off, size_t sector_size);
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2019-03-08-format-version-4.markdown | 31 restart_point 0: k, v (off, sz), k, v (delta-sz), ..., k, v (delta-sz) 32 restart_point 1: k, v (off, sz), k, v (delta-sz), ..., k, v (delta-sz) 34 restart_point n-1: k, v (off, sz), k, v (delta-sz), ..., k, v (delta-sz)
|
| D | 2017-09-28-rocksdb-5-8-released.markdown | 15 * Replace dynamic_cast<> (except unit test) so people can choose to build with RTTI off. With make,…
|
| D | 2014-06-23-plaintable-a-new-file-format.markdown | 37 …multiple cache misses for most empty results queries. This is a good trade-off for use cases with …
|
| D | 2017-08-25-flushwal.markdown | 20 The user can turn off the automatic flush of the WAL by setting `DBOptions::manual_wal_flush`. In t…
|
| D | 2018-11-21-delete-range.markdown | 31 one-off features for individual users. The range deletion pattern is common as
|
| /rocksdb-6.9/utilities/persistent_cache/ |
| D | block_cache_tier_file.h | 59 explicit LogicalBlockAddress(const uint32_t cache_id, const uint32_t off, in LogicalBlockAddress() 61 : cache_id_(cache_id), off_(off), size_(size) {} in LogicalBlockAddress()
|
| /rocksdb-6.9/ |
| D | ROCKSDB_LITE.md | 18 …ould introduce a lot of code complexity. Compile guards make code harder to read. It's a trade-off.
|
| D | HISTORY.md | 127 …d of an int. This permits finer control over the memory vs. accuracy trade-off in the new Bloom fi… 136 … now auto-enabled if a compaction filter is used. A value of `0` will turn off the feature complet… 504 * Adds a BlockBasedTableOption to turn off index block compression. 587 * Replace dynamic_cast<> (except unit test) so people can choose to build with RTTI off. With make,… 1002 …re are three steps you need to do when you convert to new release: 1. turn off filter policy, 2. c… 1140 * Enabled caching index and filter block in block cache (turned off by default).
|
| /rocksdb-6.9/port/win/ |
| D | io_win.cc | 33 bool IsSectorAligned(const size_t off) { in IsSectorAligned() argument 34 return (off & (kSectorSize - 1)) == 0; in IsSectorAligned()
|
| /rocksdb-6.9/db/ |
| D | db_wal_test.cc | 994 const double off, const double len, in CorruptWAL() argument 1010 ASSERT_EQ(0, truncate(fname.c_str(), static_cast<int64_t>(size * off))); in CorruptWAL() 1012 InduceCorruption(fname, static_cast<size_t>(size * off + 8), in CorruptWAL()
|
| /rocksdb-6.9/env/ |
| D | io_posix.cc | 195 bool IsSectorAligned(const size_t off, size_t sector_size) { in IsSectorAligned() argument 196 return off % sector_size == 0; in IsSectorAligned()
|