Lines Matching refs:uint64_t
161 const uint64_t ttl);
167 const uint64_t periodic_compaction_seconds);
279 uint64_t NumLevelBytes(int level) const;
287 using BlobFiles = std::map<uint64_t, std::shared_ptr<BlobFileMetaData>>;
384 uint64_t GetAverageValueSize() const { in GetAverageValueSize()
395 uint64_t GetEstimatedActiveKeys() const;
411 uint64_t MaxBytesForLevel(int level) const;
418 uint64_t EstimateLiveDataSize() const;
420 uint64_t estimated_compaction_needed_bytes() const { in estimated_compaction_needed_bytes()
424 void TEST_set_estimated_compaction_needed_bytes(uint64_t v) { in TEST_set_estimated_compaction_needed_bytes()
451 std::vector<uint64_t> level_max_bytes_;
537 uint64_t accumulated_file_size_;
539 uint64_t accumulated_raw_key_size_;
541 uint64_t accumulated_raw_value_size_;
543 uint64_t accumulated_num_non_deletions_;
545 uint64_t accumulated_num_deletions_;
547 uint64_t current_num_non_deletions_;
549 uint64_t current_num_deletions_;
551 uint64_t current_num_samples_;
554 uint64_t estimated_compaction_needed_bytes_;
637 uint64_t GetVersionNumber() const { return version_number_; } in GetVersionNumber()
668 uint64_t GetEstimatedActiveKeys() { in GetEstimatedActiveKeys()
689 uint64_t GetSstFilesSize();
693 void GetCreationTimeOfOldestFile(uint64_t* creation_time);
748 uint64_t version_number_;
751 MutableCFOptions mutable_cf_options, uint64_t version_number = 0);
799 uint64_t TEST_read_edits_in_atomic_group() const { in TEST_read_edits_in_atomic_group()
805 uint64_t read_edits_in_atomic_group_ = 0;
880 uint64_t* manifest_file_number);
929 uint64_t manifest_file_number() const { return manifest_file_number_; } in manifest_file_number()
931 uint64_t options_file_number() const { return options_file_number_; } in options_file_number()
933 uint64_t pending_manifest_file_number() const { in pending_manifest_file_number()
937 uint64_t current_next_file_number() const { return next_file_number_.load(); } in current_next_file_number()
939 uint64_t min_log_number_to_keep_2pc() const { in min_log_number_to_keep_2pc()
944 uint64_t NewFileNumber() { return next_file_number_.fetch_add(1); } in NewFileNumber()
947 uint64_t FetchAddFileNumber(uint64_t n) { in FetchAddFileNumber()
952 uint64_t LastSequence() const { in LastSequence()
957 uint64_t LastAllocatedSequence() const { in LastAllocatedSequence()
962 uint64_t LastPublishedSequence() const { in LastPublishedSequence()
967 void SetLastSequence(uint64_t s) { in SetLastSequence()
975 void SetLastPublishedSequence(uint64_t s) { in SetLastPublishedSequence()
981 void SetLastAllocatedSequence(uint64_t s) { in SetLastAllocatedSequence()
987 uint64_t FetchAddLastAllocatedSequence(uint64_t s) { in FetchAddLastAllocatedSequence()
993 void MarkFileNumberUsed(uint64_t number);
998 void MarkMinLogNumberToKeep2PC(uint64_t number);
1002 uint64_t prev_log_number() const { return prev_log_number_; } in prev_log_number()
1008 uint64_t MinLogNumberWithUnflushedData() const { in MinLogNumberWithUnflushedData()
1013 uint64_t PreComputeMinLogNumberWithUnflushedData( in PreComputeMinLogNumberWithUnflushedData()
1015 uint64_t min_log_num = std::numeric_limits<uint64_t>::max(); in PreComputeMinLogNumberWithUnflushedData()
1041 uint64_t ApproximateSize(const SizeApproximationOptions& options, Version* v,
1047 uint64_t manifest_file_size() const { return manifest_file_size_; } in manifest_file_size()
1055 Status GetMetadataForFile(uint64_t number, int* filelevel,
1063 uint64_t min_pending_output);
1074 static uint64_t GetNumLiveVersions(Version* dummy_versions);
1076 static uint64_t GetTotalSstFilesSize(Version* dummy_versions);
1103 uint64_t ApproximateOffsetOf(Version* v, const FdWithKeyRange& f,
1108 uint64_t ApproximateSize(Version* v, const FdWithKeyRange& f,
1113 uint64_t log_number;
1157 std::atomic<uint64_t> next_file_number_;
1161 std::atomic<uint64_t> min_log_number_to_keep_2pc_ = {0};
1162 uint64_t manifest_file_number_;
1163 uint64_t options_file_number_;
1164 uint64_t pending_manifest_file_number_;
1168 std::atomic<uint64_t> last_sequence_;
1173 std::atomic<uint64_t> last_allocated_sequence_;
1179 std::atomic<uint64_t> last_published_sequence_;
1180 uint64_t prev_log_number_; // 0 or backing store for memtable being compacted
1186 uint64_t current_version_number_;
1192 uint64_t manifest_file_size_;
1241 uint64_t TEST_read_edits_in_atomic_group() const { in TEST_read_edits_in_atomic_group()