Lines Matching refs:uint64_t
162 KeyGenerator(Random64* rand, WriteMode mode, uint64_t num) in KeyGenerator()
170 for (uint64_t i = 0; i < num_; ++i) { in KeyGenerator()
179 uint64_t Next() { in Next()
189 return std::numeric_limits<uint64_t>::max(); in Next()
195 const uint64_t num_;
196 uint64_t next_;
197 std::vector<uint64_t> values_;
203 uint64_t* bytes_written, uint64_t* bytes_read, in BenchmarkThread()
204 uint64_t* sequence, uint64_t num_ops, in BenchmarkThread()
205 uint64_t* read_hits) in BenchmarkThread()
220 uint64_t* bytes_written_;
221 uint64_t* bytes_read_;
222 uint64_t* sequence_;
223 uint64_t num_ops_;
224 uint64_t* read_hits_;
231 uint64_t* bytes_written, uint64_t* bytes_read, in FillBenchmarkThread()
232 uint64_t* sequence, uint64_t num_ops, uint64_t* read_hits) in FillBenchmarkThread()
267 uint64_t* bytes_written, uint64_t* bytes_read, in ConcurrentFillBenchmarkThread()
268 uint64_t* sequence, uint64_t num_ops, in ConcurrentFillBenchmarkThread()
269 uint64_t* read_hits, in ConcurrentFillBenchmarkThread()
291 uint64_t* bytes_written, uint64_t* bytes_read, in ReadBenchmarkThread()
292 uint64_t* sequence, uint64_t num_ops, uint64_t* read_hits) in ReadBenchmarkThread()
337 uint64_t* bytes_written, uint64_t* bytes_read, in SeqReadBenchmarkThread()
338 uint64_t* sequence, uint64_t num_ops, in SeqReadBenchmarkThread()
339 uint64_t* read_hits) in SeqReadBenchmarkThread()
362 uint64_t* bytes_written, uint64_t* bytes_read, in ConcurrentReadBenchmarkThread()
363 uint64_t* sequence, uint64_t num_ops, in ConcurrentReadBenchmarkThread()
364 uint64_t* read_hits, in ConcurrentReadBenchmarkThread()
385 uint64_t* bytes_written, in SeqConcurrentReadBenchmarkThread()
386 uint64_t* bytes_read, uint64_t* sequence, in SeqConcurrentReadBenchmarkThread()
387 uint64_t num_ops, uint64_t* read_hits, in SeqConcurrentReadBenchmarkThread()
408 uint64_t* sequence, uint32_t num_threads) in Benchmark()
418 uint64_t bytes_written = 0; in Run()
419 uint64_t bytes_read = 0; in Run()
420 uint64_t read_hits = 0; in Run()
449 uint64_t* bytes_written, uint64_t* bytes_read,
450 bool write, uint64_t* read_hits) = 0;
455 uint64_t* sequence_;
456 uint64_t num_write_ops_per_thread_;
457 uint64_t num_read_ops_per_thread_;
464 uint64_t* sequence) in FillBenchmark()
469 void RunThreads(std::vector<port::Thread>* /*threads*/, uint64_t* bytes_written, in RunThreads()
470 uint64_t* bytes_read, bool /*write*/, in RunThreads()
471 uint64_t* read_hits) override { in RunThreads()
480 uint64_t* sequence) in ReadBenchmark()
485 void RunThreads(std::vector<port::Thread>* threads, uint64_t* bytes_written, in RunThreads()
486 uint64_t* bytes_read, bool /*write*/, in RunThreads()
487 uint64_t* read_hits) override { in RunThreads()
504 explicit SeqReadBenchmark(MemTableRep* table, uint64_t* sequence) in SeqReadBenchmark()
509 void RunThreads(std::vector<port::Thread>* threads, uint64_t* bytes_written, in RunThreads()
510 uint64_t* bytes_read, bool /*write*/, in RunThreads()
511 uint64_t* read_hits) override { in RunThreads()
527 uint64_t* sequence) in ReadWriteBenchmark()
536 void RunThreads(std::vector<port::Thread>* threads, uint64_t* bytes_written, in RunThreads()
537 uint64_t* bytes_read, bool /*write*/, in RunThreads()
538 uint64_t* read_hits) override { in RunThreads()
608 uint64_t sequence; in main()