Home
last modified time | relevance | path

Searched refs:CommitEntry64b (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.h160 CommitEntry64b dont_care;
382 struct CommitEntry64b { struct
383 constexpr CommitEntry64b() noexcept : rep_(0) {} in CommitEntry64b() argument
385 CommitEntry64b(const CommitEntry& entry, const CommitEntry64bFormat& format) in CommitEntry64b() function
386 : CommitEntry64b(entry.prep_seq, entry.commit_seq, format) {} in CommitEntry64b()
388 CommitEntry64b(const uint64_t ps, const uint64_t cs, in CommitEntry64b() function
602 bool GetCommitEntry(const uint64_t indexed_seq, CommitEntry64b* entry_64b,
615 CommitEntry64b& expected_entry,
747 std::unique_ptr<std::atomic<CommitEntry64b>[]> commit_cache_;
Dwrite_prepared_txn_db.cc401 commit_cache_ = std::unique_ptr<std::atomic<CommitEntry64b>[]>( in Init()
402 new std::atomic<CommitEntry64b>[COMMIT_CACHE_SIZE] {}); in Init()
482 CommitEntry64b evicted_64b; in AddCommitted()
579 CommitEntry64b* entry_64b, in GetCommitEntry()
589 CommitEntry64b new_entry_64b(new_entry, FORMAT); in AddCommitEntry()
590 CommitEntry64b evicted_entry_64b = commit_cache_[static_cast<size_t>(indexed_seq)].exchange( in AddCommitEntry()
597 CommitEntry64b& expected_entry_64b, in ExchangeCommitEntry()
600 CommitEntry64b new_entry_64b(new_entry, FORMAT); in ExchangeCommitEntry()
Dwrite_prepared_transaction_test.cc46 using CommitEntry64b = WritePreparedTxnDB::CommitEntry64b; typedef
294 TEST(CommitEntry64b, BasicTest) { in TEST() argument
300 CommitEntry64b empty_entry64b; in TEST()
322 CommitEntry64b entry64b(before, FORMAT); in TEST()
713 CommitEntry64b dont_care; in TEST_P()
727 CommitEntry64b e2_64b(e2, wp_db->FORMAT); in TEST_P()
736 CommitEntry64b c_64b(c, wp_db->FORMAT); in TEST_P()