| /rocksdb-6.9/memtable/ |
| D | skiplist_test.cc | 171 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()
|
| D | inlineskiplist_test.cc | 347 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.yml | 166 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…
|
| D | CMakeCache.txt | 42 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
|
| D | Vagrantfile | 35 gmake all OPT=-g
|
| D | defs.bzl | 46 # (e.g. it tells testpilot that the binary
|
| D | HISTORY.md | 452 …(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/ |
| D | rate_limiter.h | 48 MutexLock g(&request_mutex_); 58 MutexLock g(&request_mutex_);
|
| D | rate_limiter.cc | 77 MutexLock g(&request_mutex_); in ~GenericRateLimiter() local 107 MutexLock g(&request_mutex_); in Request() local
|
| /rocksdb-6.9/build_tools/ |
| D | make_package.sh | 73 package g++-4.8 74 export CXX=g++-4.8
|
| D | build_detect_platform | 83 CXX=g++ 87 CXX=g++
|
| /rocksdb-6.9/docs/ |
| D | README.md | 44 …- 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…
|
| D | CONTRIBUTING.md | 100 If you want a top-level page (e.g., http://your-site.com/top-level.html) -- not in `/blog/` or `/do…
|
| D | LICENSE-DOCUMENTATION | 106 g. Licensed Rights means the rights granted to You subject to the
|
| /rocksdb-6.9/java/crossbuild/ |
| D | build-linux.sh | 5 sudo apt-get -y install git make gcc g++ libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev default-…
|
| /rocksdb-6.9/utilities/ |
| D | env_librados.md | 77 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/ |
| D | 2017-05-14-core-local-stats.markdown | 18 …-g ./db_bench -statistics -use_existing_db=true -benchmarks=readrandom -threads=32 -cache_size=104…
|
| D | 2018-02-05-rocksdb-5-10-2-released.markdown | 14 …IP`, which returns how many internal keys were skipped during iterations (e.g., due to being tombs…
|
| D | 2014-06-27-avoid-expensive-locks-in-get.markdown | 64 …sion is referenced and cached in its thread local storage. All resources (e.g., memtables, files) …
|
| D | 2018-11-21-delete-range.markdown | 186 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.scss | 6 .rougeHighlight .g { color: #93a1a1 } /* Generic */ class
|
| /rocksdb-6.9/utilities/transactions/ |
| D | transaction_test.cc | 820 std::default_random_engine g(seed); in TEST_P() local 826 std::shuffle(random_keys.begin(), random_keys.end(), g); in TEST_P()
|