Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 11 of 11) sorted by relevance

/rocksdb-6.9/util/
Dcoding.cc58 uint32_t byte = *(reinterpret_cast<const unsigned char*>(p)); in GetVarint32PtrFallback() local
60 if (byte & 128) { in GetVarint32PtrFallback()
62 result |= ((byte & 127) << shift); in GetVarint32PtrFallback()
64 result |= (byte << shift); in GetVarint32PtrFallback()
75 uint64_t byte = *(reinterpret_cast<const unsigned char*>(p)); in GetVarint64Ptr() local
77 if (byte & 128) { in GetVarint64Ptr()
79 result |= ((byte & 127) << shift); in GetVarint64Ptr()
81 result |= (byte << shift); in GetVarint64Ptr()
Dcomparator.cc88 const uint8_t byte = (*key)[i]; in FindShortSuccessor() local
89 if (byte != static_cast<uint8_t>(0xff)) { in FindShortSuccessor()
90 (*key)[i] = byte + 1; in FindShortSuccessor()
/rocksdb-6.9/
DDUMP_FORMAT.md5 1) The dump starts with the magic 8 byte identifier "ROCKDUMP"
7 2) The magic is followed by an 8 byte big-endian version which is 0x00000001.
9 3) Next are arbitrarily sized chunks of bytes prepended by 4 byte little endian number indicating h…
DHISTORY.md55 * Changed Java API for RocksDB.keyMayExist functions to use Holder<byte[]> instead of StringBuilder…
/rocksdb-6.9/docs/_posts/
D2017-08-24-pinnableslice.markdown17 * value 1k byte: 14%
18 * value 10k byte: 34%
D2018-08-23-data-block-hash-index.markdown41 …a restart interval. One block consists of multiple restart intervals. The byte offset of the begin…
56 Space overhead depends on the util ratio. Each bucket is a `uint8_t` (i.e. one byte). For a util r…
64 Hash index will hash different keys (keys with different content, or byte sequence) into different …
D2019-03-08-format-version-4.markdown8 …r_key`,`seq`> and encode pointers to data blocks, <`offset`,`size`>, to a byte string and use them…
D2014-06-23-plaintable-a-new-file-format.markdown33 …s for data and index offsets.The first bit serves as a flag, so we can avoid using 8-byte pointers.
/rocksdb-6.9/docs/_data/
Dfeatures.yml3 … entirely in C++, for maximum performance. Keys and values are just arbitrarily-sized byte streams.
/rocksdb-6.9/java/
DHISTORY-JAVA.md81 * Avoid a potential byte-array-copy between c++ and Java in RocksDB.get.
/rocksdb-6.9/docs/_docs/
Dgetting-started.md10 The RocksDB library provides a persistent key value store. Keys and values are arbitrary byte array…