Searched refs:byte (Results 1 – 11 of 11) sorted by relevance
58 uint32_t byte = *(reinterpret_cast<const unsigned char*>(p)); in GetVarint32PtrFallback() local60 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() local77 if (byte & 128) { in GetVarint64Ptr()79 result |= ((byte & 127) << shift); in GetVarint64Ptr()81 result |= (byte << shift); in GetVarint64Ptr()
88 const uint8_t byte = (*key)[i]; in FindShortSuccessor() local89 if (byte != static_cast<uint8_t>(0xff)) { in FindShortSuccessor()90 (*key)[i] = byte + 1; in FindShortSuccessor()
5 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…
55 * Changed Java API for RocksDB.keyMayExist functions to use Holder<byte[]> instead of StringBuilder…
17 * value 1k byte: 14%18 * value 10k byte: 34%
41 …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 …
8 …r_key`,`seq`> and encode pointers to data blocks, <`offset`,`size`>, to a byte string and use them…
33 …s for data and index offsets.The first bit serves as a flag, so we can avoid using 8-byte pointers.
3 … entirely in C++, for maximum performance. Keys and values are just arbitrarily-sized byte streams.
81 * Avoid a potential byte-array-copy between c++ and Java in RocksDB.get.
10 The RocksDB library provides a persistent key value store. Keys and values are arbitrary byte array…