Lines Matching refs:max_key_
43 max_key_(FLAGS_max_key), in SharedState()
68 int64_t* permutation = new int64_t[max_key_]; in SharedState()
69 for (int64_t i = 0; i < max_key_; i++) { in SharedState()
73 int64_t num_no_overwrite_keys = (max_key_ * FLAGS_nooverwritepercent) / 100; in SharedState()
77 int64_t rand_index = i + rnd.Next() % (max_key_ - i); in SharedState()
89 sizeof(std::atomic<uint32_t>) * FLAGS_column_families * max_key_; in SharedState()
135 new std::atomic<uint32_t>[FLAGS_column_families * max_key_]); in SharedState()
142 for (int j = 0; j < max_key_; ++j) { in SharedState()
153 long num_locks = static_cast<long>(max_key_ >> log2_keys_per_lock_); in SharedState()
154 if (max_key_ & ((1 << log2_keys_per_lock_) - 1)) { in SharedState()
184 int64_t GetMaxKey() const { return max_key_; } in GetMaxKey()
237 return values_[cf * max_key_ + key]; in Value()
335 const int64_t max_key_; variable