Home
last modified time | relevance | path

Searched refs:shift (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/util/
Dcoding.cc57 for (uint32_t shift = 0; shift <= 28 && p < limit; shift += 7) { in GetVarint32PtrFallback() local
62 result |= ((byte & 127) << shift); in GetVarint32PtrFallback()
64 result |= (byte << shift); in GetVarint32PtrFallback()
74 for (uint32_t shift = 0; shift <= 63 && p < limit; shift += 7) { in GetVarint64Ptr() local
79 result |= ((byte & 127) << shift); in GetVarint64Ptr()
81 result |= (byte << shift); in GetVarint64Ptr()
/rocksdb-6.9/docs/_posts/
D2016-09-28-rocksdb-4-11-2-released.markdown41 …pressionType and PerfLevel changes from char to unsigned char. Value of all PerfLevel shift by one.
/rocksdb-6.9/
DHISTORY.md753 …pressionType and PerfLevel changes from char to unsigned char. Value of all PerfLevel shift by one.