Lines Matching refs:max_keys
184 for (auto max_keys : in TEST_F()
187 RunInsertTest(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
195 for (auto max_keys : {1 * 1024 * 1024 * kStressFactor}) { in TEST_F()
198 RunInsertTestWithEviction(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
208 for (auto max_keys : in TEST_F()
213 RunInsertTest(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
222 for (auto max_keys : {1 * 1024 * 1024 * kStressFactor}) { in TEST_F()
225 RunInsertTestWithEviction(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
234 for (auto max_keys : in TEST_F()
238 RunInsertTest(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
248 for (auto max_keys : {1 * 1024 * 1024 * kStressFactor}) { in TEST_F()
253 RunInsertTestWithEviction(nthreads, static_cast<size_t>(max_keys)); in TEST_F()
314 const size_t max_keys = 100 * 1024, const size_t max_usecase = 5) { in RunTest() argument
317 int num_iter = static_cast<int>(max_keys * kStressFactor); in RunTest()