Home
last modified time | relevance | path

Searched refs:step (Results 1 – 9 of 9) sorted by relevance

/rocksdb-6.9/docs/
DREADME.md13 > If you have run the site before, you can start with step 1 and then move on to step 5.
68 1. Either of commands in the previous step will serve up the site on your local device at http://12…
DCONTRIBUTING.md70 Adding a new blog post is a four-step process.
/rocksdb-6.9/table/block_based/
Dblock_test.cc55 const int len, const int step = 1, in GenerateRandomKVs() argument
61 for (int i = from; i < from + len; i += step) { in GenerateRandomKVs()
Ddata_block_hash_index_test.cc62 const int len, const int step = 1, in GenerateRandomKVs() argument
68 for (int i = from; i < from + len; i += step) { in GenerateRandomKVs()
/rocksdb-6.9/env/
Denv_test.cc1579 explicit Base(int* step) : step_(step) { in TEST_P() argument
1693 int step = 0; in TEST_P() local
1696 Base b(&step); in TEST_P()
1722 EXPECT_EQ(24, step); in TEST_P()
/rocksdb-6.9/docs/_posts/
D2017-08-25-flushwal.markdown16 The write to the WAL is first written to the application memory buffer. The buffer in the next step
/rocksdb-6.9/db/
Ddb_test.cc3039 static bool CompareIterators(int step, DB* model, DB* db, in CompareIterators() argument
3053 fprintf(stderr, "step %d: Key mismatch: '%s' vs. '%s'\n", step, in CompareIterators()
3062 step, EscapeString(miter->key()).c_str(), in CompareIterators()
3072 step, miter->Valid(), dbiter->Valid()); in CompareIterators()
3116 for (int step = 0; step < N; step++) { in TEST_P() local
3157 if ((step % 100) == 0) { in TEST_P()
3163 ASSERT_TRUE(CompareIterators(step, &model, db_, nullptr, nullptr)); in TEST_P()
3164 ASSERT_TRUE(CompareIterators(step, &model, db_, model_snap, db_snap)); in TEST_P()
3174 ASSERT_TRUE(CompareIterators(step, &model, db_, nullptr, nullptr)); in TEST_P()
/rocksdb-6.9/java/
DCMakeLists.txt378 # Old CMake or Java 1.7 ONLY generate JNI headers, Java 1.8+ JNI is handled in add_jar step above
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest.h11613 RangeGenerator(T begin, T end, IncrementT step)
11615 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
11629 IncrementT step)
11630 : base_(base), value_(value), index_(index), step_(step) {}
11672 const IncrementT& step) {
11674 for (T i = begin; i < end; i = static_cast<T>(i + step))
17729 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
17731 new internal::RangeGenerator<T, IncrementT>(start, end, step));