Home
last modified time | relevance | path

Searched refs:off (Results 1 – 16 of 16) sorted by relevance

/rocksdb-6.9/include/rocksdb/
Dslice.h261 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/
Denv_mirror.cc30 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/
DAPI.md19 # 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/
Dread_write_util.cc63 bool IsFileSectorAligned(const size_t off, size_t sector_size) { in IsFileSectorAligned() argument
64 return off % sector_size == 0; in IsFileSectorAligned()
Dread_write_util.h32 bool IsFileSectorAligned(const size_t off, size_t sector_size);
/rocksdb-6.9/docs/_posts/
D2019-03-08-format-version-4.markdown31 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)
D2017-09-28-rocksdb-5-8-released.markdown15 * Replace dynamic_cast<> (except unit test) so people can choose to build with RTTI off. With make,…
D2014-06-23-plaintable-a-new-file-format.markdown37 …multiple cache misses for most empty results queries. This is a good trade-off for use cases with …
D2017-08-25-flushwal.markdown20 The user can turn off the automatic flush of the WAL by setting `DBOptions::manual_wal_flush`. In t…
D2018-11-21-delete-range.markdown31 one-off features for individual users. The range deletion pattern is common as
/rocksdb-6.9/utilities/persistent_cache/
Dblock_cache_tier_file.h59 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/
DROCKSDB_LITE.md18 …ould introduce a lot of code complexity. Compile guards make code harder to read. It's a trade-off.
DHISTORY.md127 …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/
Dio_win.cc33 bool IsSectorAligned(const size_t off) { in IsSectorAligned() argument
34 return (off & (kSectorSize - 1)) == 0; in IsSectorAligned()
/rocksdb-6.9/db/
Ddb_wal_test.cc994 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/
Dio_posix.cc195 bool IsSectorAligned(const size_t off, size_t sector_size) { in IsSectorAligned() argument
196 return off % sector_size == 0; in IsSectorAligned()