Home
last modified time | relevance | path

Searched refs:g (Results 1 – 22 of 22) sorted by relevance

/rocksdb-6.9/memtable/
Dskiplist_test.cc171 static uint64_t HashNumbers(uint64_t k, uint64_t g) { in HashNumbers() argument
172 uint64_t data[2] = { k, g }; in HashNumbers()
176 static Key MakeKey(uint64_t k, uint64_t g) { in MakeKey() argument
179 assert(g <= 0xffffffffu); in MakeKey()
180 return ((k << 40) | (g << 8) | (HashNumbers(k, g) & 0xff)); in MakeKey()
231 const int g = current_.Get(k) + 1; in WriteStep() local
232 const Key new_key = MakeKey(k, g); in WriteStep()
234 current_.Set(k, g); in WriteStep()
Dinlineskiplist_test.cc347 uint64_t data[2] = {k, g}; in HashNumbers()
351 static Key MakeKey(uint64_t k, uint64_t g) { in MakeKey() argument
354 assert(g <= 0xffffffffu); in MakeKey()
355 return ((k << 40) | (g << 8) | (HashNumbers(k, g) & 0xff)); in MakeKey()
406 const int g = current_.Get(k) + 1; in WriteStep() local
407 const Key new_key = MakeKey(k, g); in WriteStep()
411 current_.Set(k, g); in WriteStep()
416 const int g = current_.Get(k) + 1; in ConcurrentWriteStep() local
417 const Key new_key = MakeKey(k, g); in ConcurrentWriteStep()
427 ASSERT_EQ(g, current_.Get(k) + 1); in ConcurrentWriteStep()
[all …]
/rocksdb-6.9/
D.travis.yml166 sudo apt-get install -y g++-8;
167 CC=gcc-8 && CXX=g++-8;
234 sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix;
235 …E_C_COMPILER=x86_64-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DCMAKE_SYSTEM_NAM…
DCMakeCache.txt42 CMAKE_ASM_FLAGS_DEBUG:STRING=-g
51 CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
76 CMAKE_CXX_FLAGS_DEBUG:STRING=-g
85 CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
103 CMAKE_C_FLAGS_DEBUG:STRING=-g
112 CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
DVagrantfile35 gmake all OPT=-g
Ddefs.bzl46 # (e.g. it tells testpilot that the binary
DHISTORY.md452 …(on supporting platforms) to "rocksdb:<thread pool priority><thread number>", e.g., "rocksdb:low0".
543 …IP`, which returns how many internal keys were skipped during iterations (e.g., due to being tombs…
605 …ore predictable I/O usage when compaction reads more data than it writes, e.g., due to lots of del…
/rocksdb-6.9/util/
Drate_limiter.h48 MutexLock g(&request_mutex_);
58 MutexLock g(&request_mutex_);
Drate_limiter.cc77 MutexLock g(&request_mutex_); in ~GenericRateLimiter() local
107 MutexLock g(&request_mutex_); in Request() local
/rocksdb-6.9/build_tools/
Dmake_package.sh73 package g++-4.8
74 export CXX=g++-4.8
Dbuild_detect_platform83 CXX=g++
87 CXX=g++
/rocksdb-6.9/docs/
DREADME.md44 …- On first runs or for structural changes to the documentation (e.g., new sidebar menu item), do a…
66 …e.g., on a Mac, you can your IP address with something like `ifconfig | grep "inet " | grep -v 127…
DCONTRIBUTING.md100 If you want a top-level page (e.g., http://your-site.com/top-level.html) -- not in `/blog/` or `/do…
DLICENSE-DOCUMENTATION106 g. Licensed Rights means the rights granted to You subject to the
/rocksdb-6.9/java/crossbuild/
Dbuild-linux.sh5 sudo apt-get -y install git make gcc g++ libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev default-…
/rocksdb-6.9/utilities/
Denv_librados.md77 sudo apt-get install g++ cmake libbz2-dev libaio-dev bison \
102 sed -i 's#.*datadir.*#datadir = /var/lib/mysql#g' /etc/mysql/my.cnf
/rocksdb-6.9/docs/_posts/
D2017-05-14-core-local-stats.markdown18 …-g ./db_bench -statistics -use_existing_db=true -benchmarks=readrandom -threads=32 -cache_size=104…
D2018-02-05-rocksdb-5-10-2-released.markdown14 …IP`, which returns how many internal keys were skipped during iterations (e.g., due to being tombs…
D2014-06-27-avoid-expensive-locks-in-get.markdown64 …sion is referenced and cached in its thread local storage. All resources (e.g., memtables, files) …
D2018-11-21-delete-range.markdown186 a constant-time operation (excluding edge cases, e.g., many range tombstones
195 used in production (e.g., scan-and-delete).
/rocksdb-6.9/docs/_sass/
D_syntax-highlighting.scss6 .rougeHighlight .g { color: #93a1a1 } /* Generic */ class
/rocksdb-6.9/utilities/transactions/
Dtransaction_test.cc820 std::default_random_engine g(seed); in TEST_P() local
826 std::shuffle(random_keys.begin(), random_keys.end(), g); in TEST_P()